Tagged Questions

37
votes
17answers
3k views

Why can’t variables be declared in a switch statement?

I've always wondered this - why can't you declare variables after a case label in a switch statement? In C++ you can declare variables pretty much anywhere (and declaring them clo …
6
votes
2answers
113 views

Why can’t I do this with implicit types in C#?

var x = new { a = "foobar", b = 42 }; List<x.GetType()> y; Is there a different way to do what I want to do here? If there's not, I don't really see all that much point i …
3
votes
7answers
234 views

Why does Java not support type inference for constructors?

E.G. to create an ArrayList of Strings we have to do something like List<String> list = new ArrayList<String>(); whereas it should be able to infer the parameter typ …
10
votes
9answers
1k views

Why can’t I declare static methods in an interface?

The topic says the most of it - what is the reason for the fact that static methods can't be declared in an interface? public interface ITest { public static String test(); } …
12
votes
3answers
678 views

Why can’t you overload the ‘.’ operator in C++?

It would be very useful to be able to overload the . operator in C++ and return a reference to an object. You can overload operator-> and operator* but not operator. Is there …
6
votes
4answers
841 views

Why can’t I use a type argument in a type parameter with multiple bounds?

So, I understand that the following doesn't work, but why doesn't it work? interface Adapter<E> {} class Adaptulator<I> { <E, A extends I & Adapter<E>&g …
0
votes
5answers
655 views

Why can’t you bind the Size of a windows form to ApplicationSettings?

Update: Solved, with code I got it working, see my answer below for the code... Original Post As Tundey pointed out in his answer to my last question, you can bind nearly everyt …
2
votes
4answers
444 views

Why can’t we use “this” inside the class?

E,g class Test { public: void setVal(const std::string& str) { this.isVal = str; //This will error out } private: string isVal; };
3
votes
6answers
564 views

Why events can’t be used in the same way in derived classes as in the base class in C#?

In following code, I want to extend the behaviour of a class by deriving/subclassing it, and make use of an event of the base class: public class A { public event EventHandler …
8
votes
2answers
442 views

Why can’t variables be declared in a switch statement?

I want to know more about "Why can’t variables be declared in a switch statement?" I read the post but i am not getting it exactly. You can just declare variable inside switch but …
3
votes
2answers
1k views

c# why cant a nullable int be assigned null as a value

Hi Everyone Can someone explain to me why a nullable int cant be assigned the value of null e.g int? accom = (accomStr == "noval" ? null : Convert.ToInt32(accomStr)); What's w …
0
votes
1answer
650 views

Why is string class is immutable in C#? [closed]

Why is string class is immutable in C#?