vote up 7 vote down star
3

Backwards compatibility is a big concern for language designers, especially when the language is as popular as C#. Over time languages accumulate obsolete features. It's considered good practice to avoid these features, but they are kept in the langage for compatibility with old releases.

Which language features or base class libraries in C# should be removed if backwards compatibility were not an issue?

I am not asking about features that some developers like and others loathe. I am interested in features that are (pretty much) universally regarded as best-avoided (perhaps because there is now an outright better way of doing the same thing).

flag
2  
How about GOTO? As in GOTO "subjective and argumentative"? – Matthew Jones Nov 4 at 18:21
Is there any way I could refine the question that would satisfy those people who want it closed? I realise that what language features each developer likes is subjective, but I think there are some things that are almost universally regarded as bad. – ctford Nov 4 at 18:24
I'm not sure what the point of it is besides a "debate", vote to close subjective and argumentative. – sixlettervariables Nov 4 at 18:34
4  
I don't understand what is wrong with "debate" as long as it does not devolve into name calling and mud slinging. – JRob Nov 4 at 18:35
5  
The counterfactual premise is just a heuristic for identifying dead weight - a new .NET developer might benefit from reading this by learning (to pick two examples from below) that they the framework contains better alternatives to ArrayList and ReaderWriterLock. – Jeff Sternal Nov 4 at 18:58
show 3 more comments

11 Answers

vote up 15 vote down check

ArrayList.

There is no point in using it anymore. List<> is way better.

link|flag
5  
This isn't a C# feature, it's a BCL class, but I agree. – configurator Nov 4 at 18:33
6  
Except for those rare occasions where you might actually want to store a list of different types of objects. – Chris Nov 4 at 18:37
7  
Though I guess you could just as easily use List<object>, eh? – Chris Nov 4 at 18:37
1  
How many use cases are there for using List<object> anyway? Seems like a bad idea in a language which is statically typed. Better to use interfaces or base classes. – Ed Swangren Nov 4 at 18:43
4  
Generics aren't a C# feature, they're a CLR feature that's supported in C#; otherwise, VB.NET and C# generics wouldn't be equivalent. – FacticiusVir Nov 4 at 18:51
show 5 more comments
vote up 1 vote down

Named attribute constructor parameters.

Currently, you set the named parameters with:

[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = true)]

This is from the time of C#1, but now there are object constructors:

new Foo(explicit, values) { Implicit = value }

Which would result in the following Attribute constructor:

[AttributeUsage(AttributeTargets.Method) { Inherited = false, AllowMultiple = true }]
link|flag
vote up 2 vote down

When implementing IEnumerable<T>, you'll have to implement IEnumerator<T> GetEnumerator() as well System.Collections.IEnumerator GetEnumerator() for backwards compatibility reasons.

link|flag
In fact, it's not only for backward compatibility reasons. It needs to be there to support enumerating any IEnumerable regardless of its type. – jpbochi Nov 4 at 20:57
vote up 0 vote down

The System.IO.Path.InvalidPathChars field. Using it results in a security risk, but there's nothing they can do about it for compatibility reasons.

link|flag
source or article on this? – corymathews Nov 17 at 14:21
vote up 2 vote down

Non-sealed types by default.

link|flag
vote up 13 vote down

I have heard several of the C# designers mention that they regret making arrays covariant.

link|flag
+1 As very well explained here: blogs.msdn.com/ericlippert/archive/… – jpbochi Nov 4 at 20:55
vote up -2 vote down

From the BCL's:

  1. COM Interop
  2. StringCollection (Generic List)
  3. StringDictionary (Generic Dictionary)
link|flag
1  
I wouldn't call COM Interop something solely related to "backward compatibility". There's plenty of new native development out there.COM Interop is an important piece for this interop, even when you do not use COM at all. – Robert Giesecke Nov 4 at 19:02
I use StringCollection when serializing collections of strings for app settings using the Visual Studio/.NET Framework Settings feature. – jasonh Nov 4 at 19:07
vote up -16 vote down

Generic lists (as mentioned by Reshure) including "var". I'm a proponent of explicitly declaring variables.

Edit: I think people are equating "generic lists" with "generics". If you prefer, "untyped collections" such as Hashtable or ArrayList.

link|flag
2  
var is type inference and is not directly related to generics. It is pretty much required for linq and helps reduce unnecessarily-verbose type declarations (although it is open to abuse). In any case, it wouldn't be removed from the language... – Lee Nov 4 at 19:01
Generic lists??? Also it's not because YOU don't like a feature that it should be removed. – Meta-Knight Nov 4 at 19:03
Yeesh. I'm all for anything that makes my C# look less like HTML. – aehiilrs Nov 4 at 20:20
Generic lists lend towards sloppy code. I've seen way to many projects end up in "debug hell" because someone declare a variable as "object". As for "var", I'm a proponent of self-documenting code, and "var x = foo()" tells me nothing about what 'x' is. – James Bailey Nov 5 at 0:03
vote up 3 vote down

I know this is an obvious answer but any class, property or method marked with the [Obsolete] attribute would probably be the first to be removed.

link|flag
3  
unless of course its also marked [Reincarnate(true)] – Neil N Nov 4 at 18:45
vote up 1 vote down

The ReaderWriterLock class is basically pointless now in favor of the ReaderWriterLockSlim class, which Microsoft themselves say is recommended for all new development.

link|flag
1  
Just a nitpick: like other examples, this has to do with the .Net library, not C# itself. – Neil N Nov 4 at 18:45
@Neil: Interestingly, I did indicate that in my initial answer, but it was then mysteriously edited out for some reason. – Dan Nov 4 at 19:36
vote up 0 vote down

Wow, I seriously could not think of any. That says something.

link|flag
5  
Does it say something about c# or about you? – Manu Nov 4 at 20:29
I am honestly not quite sure :) But I will defend myself by saying that the majority of answers are BCL issues not language issues, sad that people dont know the difference. – keithwarren7 Nov 4 at 20:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.