Eliminating ComVisible noises.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices.ComTypes / VARKIND.cs
1 //
2 // System.Runtime.InteropServices.ComTypes.VARKIND.cs
3 //
4 // Author:
5 //   Kazuki Oikawa (kazuki@panicode.com)
6 //
7
8 #if NET_2_0
9 namespace System.Runtime.InteropServices.ComTypes
10 {
11         [Serializable]
12         public enum VARKIND
13         {
14                 VAR_PERINSTANCE = 0,
15                 VAR_STATIC = 1,
16                 VAR_CONST = 2,
17                 VAR_DISPATCH = 3
18         }
19 }
20 #endif