* LocalBuilder.cs (LocalBuilder.Mono_GetLocalIndex): New static internal method; same as the .NET 2.0 property `LocalIndex'. svn path=/trunk/mcs/; revision=50053
@@ -1,3 +1,8 @@
+2005-09-14 Martin Baulig <[email protected]>
+
+ * LocalBuilder.cs
+ (LocalBuilder.Mono_GetLocalIndex): New static internal method;
+ same as the .NET 2.0 property `LocalIndex'.
Mon Sep 5 18:08:09 CEST 2005 Paolo Molaro <[email protected]>
@@ -115,6 +115,11 @@ namespace System.Reflection.Emit {
}
#endif
+ internal static int Mono_GetLocalIndex (LocalBuilder builder)
+ {
+ return builder.position;
+ }
internal string Name {
get { return name; }