Jelle Druyts .NET Consultant
Just another ignorant weirdo from Antwerp, Belgium trying to make sense out of it all
Why can't I do this in C#:
public abstract class Base : ISerializable { }
Base
ISerializable
Now I have to go:
public abstract class Base : ISerializable { public abstract void GetObjectData(SerializationInfo info, StreamingContext context); }