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/IFieldRef.cs')
-rw-r--r--mcs/ilasm/codegen/IFieldRef.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/IFieldRef.cs b/mcs/ilasm/codegen/IFieldRef.cs
new file mode 100644
index 00000000000..15184e41845
--- /dev/null
+++ b/mcs/ilasm/codegen/IFieldRef.cs
@@ -0,0 +1,25 @@
+//
+// Mono.ILASM.IFieldRef
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+//
+
+
+using System;
+
+namespace Mono.ILASM {
+
+ public interface IFieldRef {
+
+ PEAPI.Field PeapiField {
+ get;
+ }
+
+ void Resolve (CodeGen code_gen);
+ }
+}
+
+