Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/codegen/FeatureAttr.cs')
-rw-r--r--mcs/ilasm/codegen/FeatureAttr.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/FeatureAttr.cs b/mcs/ilasm/codegen/FeatureAttr.cs
new file mode 100644
index 00000000000..f3eecb0d067
--- /dev/null
+++ b/mcs/ilasm/codegen/FeatureAttr.cs
@@ -0,0 +1,24 @@
+//
+// Mono.ILASM.FeatureAttr
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+//
+
+
+using System;
+
+namespace Mono.ILASM {
+
+ [Flags]
+ public enum FeatureAttr {
+ None = 0x0,
+ Instance = 0x1,
+ Rtspecialname = 0x2,
+ Specialname = 0x4
+ }
+
+}
+