What language decision in C# annoys you? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:18:39Z http://stackoverflow.com/feeds/question/643050 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you 5 What language decision in C# annoys you? Steve 2009-03-13T14:50:39Z 2009-04-30T16:51:59Z <p>I was just dealing with strings, and I find myself annoyed that strings can be nullable. So, I have to have </p> <pre><code>if((teststring??string.Empty)==string.Empty) </code></pre> <p>all over the place. Would string? have been so hard for allowing nullability in the relatively few cases where it is needed (dbs, idiot user inputs, etc.). I also find myself irritated with having to export readonly interfaces in the cases where I want some form of const correctness. So, what C# language construct/decision annoys you?</p> <p>EDIT: Thanks for the isnullorempty function, I hadn't seen that before! Still doesn't lessen my annoyance at it being nullable :D</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643067#643067 26 Answer by Mitch Wheat for What language decision in C# annoys you? Mitch Wheat 2009-03-13T14:53:11Z 2009-04-30T15:47:14Z <p>Testing strings for Null or Empty is best done using:</p> <pre><code>if (string.IsNullOrEmpty(testString)) { } </code></pre> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643078#643078 0 Answer by Rob Stevenson-Leggett for What language decision in C# annoys you? Rob Stevenson-Leggett 2009-03-13T14:54:16Z 2009-03-13T15:05:49Z <p>The way I have to implement properties from an interface in c# 3.0 even though they are exactly the same as the interface when I'm not changing default behaviour of auto properties.</p> <p>e.g.</p> <pre><code>public interface MyInterface { int MyProperty { get; set;} } public class MyClass : MyInterface { public int MyProperty { get; set; } } public class MyClass2 : MyInterface { public int MyProperty { get; set; } } public class MyClass3 : MyInterface { public int MyProperty { get; set; } } </code></pre> <p>EDIT: To address some of the comments on this. I'm not changing any default behaviour of my getter. I understand the difference between class and interface thankyou, my point is that my marking it with the interface I shouldn't have to have this property inside every implementing class unless I want to change the default behaviour of the getter or setter. Imagine 500 classes implement this interface?</p> <p>Also the lack of Mixins..</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643092#643092 3 Answer by boredgeek for What language decision in C# annoys you? boredgeek 2009-03-13T14:55:38Z 2009-03-13T14:55:38Z <p>out and ref parameters</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643093#643093 1 Answer by JaredPar for What language decision in C# annoys you? JaredPar 2009-03-13T14:55:56Z 2009-03-13T14:55:56Z <p>Expanding on Mitch's answer.</p> <p>That is actually a CLR decision, not a C# one. C# has no control over the implementation details of the BCL's System.String class. </p> <p>True C# could have special cased string in the compiler and said we'll do special null checks but that would have IMHO, been a bad decision. String.IsNullOrEmpty is an acceptable compromise.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643110#643110 17 Answer by Jon Skeet for What language decision in C# annoys you? Jon Skeet 2009-03-13T14:59:20Z 2009-03-13T14:59:20Z <p>Making string a reference type seems entirely reasonable to me.</p> <p>It's a shame that one can't declare a variable/parameter/return type to be <em>non-nullable</em> though - e.g.</p> <pre><code>// Never returns null public string! Foo() { } </code></pre> <p>Code contracts in .NET 4.0 will help with this, I believe - but it's a bit late to make it pervasive.</p> <p>A while ago I wrote a <a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2008/02/05/c-4-part-1-looking-back-at-the-past.aspx" rel="nofollow">blog entry on the mistakes of C#</a>. To summarise that post:</p> <p><strong>C# 1:</strong></p> <ul> <li>Lack of separate getter/setter access for properties.</li> <li>Lack of generics. Life would have been a lot sweeter with generics from the start.</li> <li>Classes not being sealed by default.</li> <li>Enums just being named numbers.</li> <li>The "\x" character escape sequence.</li> <li>Various things about the switch statement :)</li> <li>Some odd overload resolution rules</li> <li>The "lock" keyword, instead of "using" with a lock tocken.</li> </ul> <p><strong>C# 2:</strong></p> <ul> <li>Lack of partial methods (came in C# 3)</li> <li>Lack of generic variance (coming in C# 4)</li> <li>The <code>System.Nullable</code> class (not <code>Nullable&lt;T&gt;</code> - that's fine!)</li> <li>InternalsVisibleTo requiring the whole public key for strongly signed assemblies instead of the public key token.</li> </ul> <p><strong>C# 3:</strong></p> <ul> <li>Lack of support for immutability - lots of changes improved opportunities for mutating types (automatic properties, object and collection initializers) but none of these really work for mutable types</li> <li>Extension method discovery</li> </ul> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/644783#644783 4 Answer by cletus for What language decision in C# annoys you? cletus 2009-03-13T22:03:55Z 2009-03-13T22:03:55Z <p>Probably the biggest glaring hole in C# is, for me, enums.</p> <p>Java enums are typesafe classes that you can give behaviour to, can implement interfaces and so on.</p> <p>C#/.Net enums are just glorified ints with all the problems int constants have had going back to C and C++.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807673#807673 0 Answer by plinth for What language decision in C# annoys you? plinth 2009-04-30T15:59:35Z 2009-04-30T15:59:35Z <p>Enforcement of break in a non-empty case.</p> <p>Verbosity of enums, especially in case statements. If I have switch (expr) and expr is an enum, I shouldn't be forced to fully qualify each enum in each case, unless there is a naming conflict.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807718#807718 0 Answer by thecoop for What language decision in C# annoys you? thecoop 2009-04-30T16:09:37Z 2009-04-30T16:09:37Z <p>Not allowing co/contra-variance or access rights changes when overriding base class or implementing interface methods:</p> <pre><code>public class A { protected virtual Stream method() { //...stuff... } } public class B : A { // compiler borks... public override FileStream method() { //...more stuff... } } </code></pre> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807773#807773 0 Answer by Kevin for What language decision in C# annoys you? Kevin 2009-04-30T16:18:51Z 2009-04-30T16:18:51Z <p>Checked exceptions would have been great. I know a lot of people hate them from Java, but I think it's always enforced sanity checks, especially on I/O. I like most of the things that C# changed and/or added compared to Java, but I really would have liked them to have adopted checked exceptions. It's too late now (the .NET framework being changed to have them would break virtually every program out there) but I think it would have been better to have them.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807817#807817 0 Answer by Brian Genisio for What language decision in C# annoys you? Brian Genisio 2009-04-30T16:28:11Z 2009-04-30T16:28:11Z <p>I hate having to type <code>IEnumerable&lt;MyType&gt;</code> all over the place. It is so hard to read. I would prefer some sort of short hand for it to make my code cleaner.</p> <p>This <a href="http://stackoverflow.com/questions/794369/should-c-introduce-a-syntactic-short-hand-for-ienumerablet">SO post</a> sums it up nicely.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807839#807839 0 Answer by annakata for What language decision in C# annoys you? annakata 2009-04-30T16:32:08Z 2009-04-30T16:32:08Z <p>I find it enormously irritating that so many core methods are static, especially around commonly used stuff like Strings and Arrays.</p> <p>Why:</p> <pre><code>Array.Sort(myArray); String.IsNullOrEmpty(myString); </code></pre> <p>instead of:</p> <pre><code>myArray.Sort(); myString.IsNullOrEmpty </code></pre> <p>Not saying there aren't good reasons for it and it's not a big deal, but if JS can manage it, why can't C#? *</p> <p>Also the <strong>switch</strong> implementation. I really think they should have trusted us with fallthrough.</p> <p>* <em>Come to that I miss JS's closure syntax too.</em></p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807857#807857 0 Answer by Steven for What language decision in C# annoys you? Steven 2009-04-30T16:34:26Z 2009-04-30T16:34:26Z <p>I don't like IDisposable/Dispose etc. Coming from C++ it is very annoying to find yourself having to think about memory management in C#. The using statement is fine if the disposable object is only used in one function. If it has to be passed around you need to manually reference count or do something else to to know when you can dispose the object.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/807972#807972 0 Answer by pgb for What language decision in C# annoys you? pgb 2009-04-30T16:51:59Z 2009-04-30T16:51:59Z <p>I'd like to see class objects as first class objects in the language.</p> <p>This would allow you to override static methods, and declare them in interfaces.</p>