2002-06-19 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / ClassInterfaceType.cs
1 //
2 // System.Runtime.InteropServices.ClassInterfaceType.cs
3 //
4 // Author:
5 //   Nick Drochak (ndrochak@gol.com)
6 //
7 // (C) 2002 Nick Drochak
8 //
9
10
11 namespace System.Runtime.InteropServices {
12
13         [Serializable]
14         public enum ClassInterfaceType 
15         {
16                 None = 0,
17   
18                 AutoDispatch = 1,
19  
20                 AutoDual = 2
21
22         } // ClassInterfaceType
23
24 } // System.Runtime.InteropServices