Generics Class Types - O'Reilly way
I found a good Generics example in C# Cookbook and thought should share. It demonstrate a good use of strong typing and inner classes. I think I'm in compliance with O'Reilly Policy on Re-Use of Code Examples from Books Understanding generic class types public static void TestGenericClassInstanceCounter() { // regular class StandardClass A = new StandardClass(5); Console.WriteLine(A); …