Browse Source

2005-05-25 Zoltan Varga <[email protected]>

	* GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.

svn path=/trunk/mcs/; revision=44995
Zoltan Varga 20 năm trước cách đây
mục cha
commit
e9aedcaa23

+ 4 - 0
mcs/class/corlib/System.Reflection.Emit/ChangeLog

@@ -1,3 +1,7 @@
+2005-05-25  Zoltan Varga  <[email protected]>
+
+	* GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.
+
 2005-05-25  Lluis Sanchez Gual  <[email protected]>
 
 	* ModuleBuilder.cs: Implemented DefineDocument(). Generate debug

+ 1 - 1
mcs/class/corlib/System.Reflection.Emit/GenericTypeParameterBuilder.cs

@@ -229,7 +229,7 @@ namespace System.Reflection.Emit
 
 		public override Type UnderlyingSystemType {
 			get {
-				return null;
+				return this;
 			}
 		}