dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection ClrType.cs


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection ClrType.cs,1.12,1.13
Date: Tue, 18 Feb 2003 01:17:17 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection
In directory subversions:/tmp/cvs-serv1343/runtime/System/Reflection

Modified Files:
        ClrType.cs 
Log Message:


Add extra methods and properties to "System.Type" that are needed to reflect
generic types.


Index: ClrType.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/ClrType.cs,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** ClrType.cs  4 May 2002 05:16:06 -0000       1.12
--- ClrType.cs  18 Feb 2003 06:17:14 -0000      1.13
***************
*** 822,825 ****
--- 822,842 ----
                        }
  
+       // Internal methods that support generic types.
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern protected override bool IsGenericTypeImpl();
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern protected override int ArityImpl();
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern public override Type[] GetInstantiation();
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern public override Type Instantiate(Type[] inst);
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern public override Type GetGenericType();
+ 
  }; // class ClrType
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]