2001-01-04 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / corlib / System / RuntimeTypeHandle.cs
1 //
2 // System.RuntimeTypeHandle.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         public struct RuntimeTypeHandle : ISerializable {
17                 IntPtr value;
18                 
19                 public IntPtr Value {
20                         get {
21                                 return (IntPtr) value;
22                         }
23                 }
24                 
25                 public void GetObjectData (SerializationInfo info, StreamingContext context)
26                 {
27                         throw new NotImplementedException ();
28                 }
29         }
30 }