Explorar el Código

Tue May 14 17:13:48 CEST 2002 Paolo Molaro <[email protected]>

	* MethodBuilder.cs: revert change in accessibility of
	GetILGenerator(int).

svn path=/trunk/mcs/; revision=4625
Paolo Molaro hace 24 años
padre
commit
5cac36d0df

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

@@ -1,4 +1,9 @@
 
+Tue May 14 17:13:48 CEST 2002 Paolo Molaro <[email protected]>
+
+	* MethodBuilder.cs: revert change in accessibility of
+	GetILGenerator(int).
+
 Tue May 14 13:31:17 CEST 2002 Paolo Molaro <[email protected]>
 
 	* FieldBuilder.cs, ParameterBuilder.cs: more special-casing of

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

@@ -112,7 +112,7 @@ namespace System.Reflection.Emit {
 		public ILGenerator GetILGenerator () {
 			return GetILGenerator (256);
 		}
-		internal ILGenerator GetILGenerator (int size) {
+		public ILGenerator GetILGenerator (int size) {
 			ilgen = new ILGenerator (this, size);
 			return ilgen;
 		}