Home
Browse all 647 examples
Download all 647 examples
Download sample chapters
Reviews
Errata
Acknowledgments
Links on .NET
Paradoxal Press

Buy directly from Paradoxal Press at $33.99 (Save 43%)



Category: Programming
Level: Beginner to seasoned
900 pages
ISBN-10 097661322-0
ISBN-13 978-097661322-0
$59.99 USA
$79.99 CANADA


Listing 13-4 extracted from chapter Generics


Listing 13-3<     > Listing 13-5


This listing can be compiled with the command line:
csc.exe /target:library Example_13_4.cs
Errors: 0 Warnings: 1


Example_13_4.cs
internal class ClassInternal { }
public class ClassFoo{
   protected class ClassProtected { }
   public class ClassPublic<U,V> { }

   // The C# compiler checks that the 
   // 'ClassPublic<ClassInternal,ClassProtected>' type is not used
   // outside this class and outside its derived classes defined in 
   // the current assembly. However, you can't assign any other 
   // visibility than 'private' to this field.
   private ClassPublic<ClassInternal,ClassProtected> foo;
}	
Copyright Patrick Smacchia 2006 2007