* Module.cs: Add net 2.0 Mvid property. svn path=/trunk/mcs/; revision=34042
@@ -1,3 +1,7 @@
+2004-09-18 Zoltan Varga <[email protected]>
+
+ * Module.cs: Add net 2.0 Mvid property.
2004-08-30 Sebastien Pouliot <[email protected]>
* Assembly.cs: Added internal Demand(PermissionSet) for CAS.
@@ -214,6 +214,17 @@ namespace System.Reflection {
return name;
}
+#if NET_2_0 || BOOTSTRAP_NET_2_0
+ public
+#else
+ internal
+#endif
+ Guid Mvid {
+ get {
+ return Mono_GetGuid (this);
+ }
// Mono Extension: returns the GUID of this module
internal static Guid Mono_GetGuid (Module module)
{