Some fixes and some implementation bits. More classes.
[mono.git] / mcs / class / corlib / System / RuntimeFieldHandle.cs
1 //
2 // System.RuntimeFieldHandle.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Runtime.Serialization;
11
12 namespace System {
13
14         // FIXME: Implement me!
15         public struct RuntimeFieldHandle : ISerializable {
16                 IntPtr value;
17                 
18                 public IntPtr Value {
19                         get {
20                                 return (IntPtr) value;
21                         }
22                 }
23                 
24                 // This is from ISerializable
25                 public void GetObjectData (SerializationInfo info, StreamingContext context)
26                 {
27                         // TODO: IMPLEMENT ME.
28                 }
29
30         }
31 }