Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
10answers
1k views

Why is is implemented as as?

Given that this very natural use case (if you don't know what as actually does) if (x is Bar) { Bar y = x as Bar; something(); } is effectively equivalent (ie, compiler generated IL from the ...
7
votes
3answers
285 views

Is there any keyword in Java which is similar to the 'AS' keyword of C#

As we know C# provides an AS keyword which automatically performs a check whether the Object is of a type and if it is, it then casts it to the needed type else gives a null. public class User { } ...
7
votes
9answers
459 views

Are there compelling reasons AGAINST using the C# keyword “as”?

I find that using the following: TreeViewItem i = sender as TreeViewItem; if(i != null){ ... } is easier to write and understand than: if(sender.GetType() == typeof(TreeViewItem)){ ...
5
votes
3answers
602 views

python's `with` statement

seems like I do not understand something with---the python with statement. Consider this class: class test(object): def __enter__(self): pass def __exit__(self, *ignored): pass now, when ...
1
vote
5answers
130 views

Object initializations are lost through use of “as” keyword

I am using a derived class and casting the base class to it using the as keyword. When I do this, the derived class constructor is being called, and it's objects initialized, but the derived instance ...
0
votes
10answers
622 views

C#: “is” vs “as” [closed]

Possible Duplicates: Why ‘is’ vs ‘as’ when casting? casting vs using the ‘as’ keyword in the CLR Suppose I have a variable whose type I don't know ...