DotNetShoutout - Stories tagged with Brittle Base Classes
5
Shouts

Fabulous Adventures In Coding : Putting a base in the middle - Eric Lippert

published 1146 days, 3 hours, 42 minutes ago posted by jantujantu 1147 days, 2 hours, 21 minutes ago
Wednesday, March 31, 2010 10:48:31 AM GMT Tuesday, March 30, 2010 12:09:09 PM GMT
I have rewritten this article based on new information I’ve just learned. I should have looked at the design notes archive first! Here’s a crazy-seeming but honest-to-goodness real customer scenario that got reported to me recently. There are three DLLs involved, Alpha.DLL, Bravo.DLL and Charlie.DLL. The classes in each are: public class Alpha // In Alpha.DLL {   public virtual void M()   {     Console.WriteLine("Alpha");   } } public class Bravo: Alpha // In Bravo.DLL { } public clas... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: Language Design, C#, Brittle Base Classes