Yurttas/PL/OOL/CS/F/06/00/02/index page

From ZCubes Wiki
Jump to navigation Jump to search
c# programming language fundamentals
6. generics

generics - generic with multiple[non-homogenous] value types

  • IDA.cs
    [ int,double items class ]
  • IDA00.cs
  • TA.cs
    [ generic items<T0,T1> class ]
  • TA00.cs
    [ <Integer,Integer> instantiation class ]
  • TA01.cs
    [ <Double,Double> instantiation class ]
  • TA02.cs
    [ <Integer,Double> instantiation class ]
  • TA03.cs
    [ <Double,Integer> instantiation class ]
  • TT.cs
    [ <T0,T1> test method class ]
  • TA04.cs
    [ <Integer,Integer>, <Double,Double>, <Integer,Double>, and <Double,Integer> instantiation class ]

properties, arrays, indexers, collections << | >> error-handling with exceptions


Dr. Salih Yurttas