2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System / RuntimeFieldHandle.cs
index 81aa1c366606f4fdda1d329b9cb3363b3fbf782e..f4536856af983cb60806d8fbf2d81054370f14eb 100755 (executable)
@@ -8,10 +8,12 @@
 //
 
 using System.Runtime.Serialization;
+using System.Globalization;
 
 namespace System {
 
-       // FIXME: Implement me!
+       [MonoTODO]
+       [Serializable]
        public struct RuntimeFieldHandle : ISerializable {
                IntPtr value;
                
@@ -32,7 +34,7 @@ namespace System {
 
                        value = t.TypeHandle.Value;
                        if (value == (IntPtr) 0)
-                               throw new SerializationException ("Insufficient state");
+                               throw new SerializationException (Locale.GetText ("Insufficient state"));
                }
                
                 public void GetObjectData (SerializationInfo info, StreamingContext context)