What is the logic/reason behind making
String s= new String("Hello World");
Illegal in C#? The error is
The best overloaded method match for `string.String(char*)' has some invalid arguments
I'm not interested in the API docs, I am interested in why this is illegal.
Is is because of pooling static strings? like Java pools Integer(-128) to Integer(127) with horrendous results? ( of course strings too )
new String(String)constructor -- this is most notably useful for academic playing with "new string objects" and "interned string objects" as Java Strings do not overload==... anyway, since Java has it, why not C#? I hope that some of the answers might try to address this, if it is addressable for any sane reason [other than it wasn't deemed useful/necessary].) – user166390 Sep 30 '11 at 21:21