2002-06-27 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / RuntimeMethodHandle.cs
1 //
2 // System.RuntimeMethodHandle.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 using System.Globalization;
12
13 namespace System {
14
15         //[MonoTODO]
16         [Serializable]
17         public struct RuntimeMethodHandle : ISerializable {
18                 IntPtr value;
19                 
20                 public IntPtr Value {
21                         get {
22                                 return (IntPtr) value;
23                         }
24                 }
25                 
26                 // This is from ISerializable
27                 [MonoTODO]
28                 public void GetObjectData (SerializationInfo info, StreamingContext context)
29                 {
30                         throw new NotImplementedException ();
31                 }
32
33         }
34 }