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-20 extracted from chapter Generics


Listing 13-19<     > Listing 13-21


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


Example_13_20.cs
class C<T,U,V> where T : class   where V :struct {
   public void Fct1( T t , U u , V v , object o, int i) {
      if ( t == o ) { } // OK
      if ( u == o ) { } // Compilation error.
      if ( v == o ) { } // Compilation error.
      if ( v == i ) { } // Compilation error.
      if ( u == null ) { } // OK
      if ( v == null ) { } // Compilation error.
   }
   public void Fct2(T t1, U u1, V v1, T t2, U u2, V v2) {
      if ( t1 == t2 ) { } // OK
      if ( u1 == u2 ) { } // Compilation error.
      if ( v1 == v2 ) { } // Compilation error.
   }
}	
Copyright Patrick Smacchia 2006 2007