Removed auto-generated comments.
[mono.git] / mcs / class / corlib / System.Reflection / CallingConventions.cs
1 // CallingConventions.cs
2 //
3 // This code was automatically generated from
4 // ECMA CLI XML Library Specification.
5 // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
6 // Created: Wed, 5 Sep 2001 06:38:43 UTC
7 // Source file: all.xml
8 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Reflection {
14
15
16         /// <summary>
17         /// </summary>
18         [Flags]
19         public enum CallingConventions {
20
21                 /// <summary>
22                 /// </summary>
23                 Standard = 1,
24
25                 /// <summary>
26                 /// </summary>
27                 VarArgs = 2,
28
29                 /// <summary>
30                 /// </summary>
31                 Any = 3,
32
33                 /// <summary>
34                 /// </summary>
35                 HasThis = 32,
36
37                 /// <summary>
38                 /// </summary>
39                 ExplicitThis = 64,
40         } // CallingConventions
41
42 } // System.Reflection