2009-02-24 Sebastien Pouliot <sebastien@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Fri, 6 Mar 2009 23:32:09 +0000 (23:32 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 6 Mar 2009 23:32:09 +0000 (23:32 -0000)
* SafeHandle.cs: Add default ctor in 2.1 profile (needed to compile

svn path=/trunk/mcs/; revision=128810

mcs/class/corlib/System.Runtime.InteropServices/ChangeLog
mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs

index 35213344bee6f7e952109f5a851ff8146e640e2b..abc84af066a0c9eec6b8901359aebde62a71128c 100644 (file)
@@ -3,6 +3,10 @@
        * SafeHandle.cs: Add default ctor in 2.1 profile (needed to compile
        new unit tests in moonlight).
 
+2009-03-05  Tom Hindle <tom_hindle@sil.org>
+       
+       * Marshal.cs: Implemented GenerateGuidForType
+
 2008-06-21  Gert Driesen  <drieseng@users.sourceforge.net>
 
        * Marshal.cs: Fixed order of arguments for ArgumentException in
index c5fb845aefb6472ae22cb402606a8340b3eead21..ec69c53b186d5444a377b1424b265b4d8910543a 100644 (file)
@@ -292,10 +292,9 @@ namespace System.Runtime.InteropServices
                }
 #endif
 
-               [MonoTODO]
                public static Guid GenerateGuidForType (Type type)
                {
-                       throw new NotImplementedException ();
+                       return type.GUID;
                }
 
                [MonoTODO]