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/IMethodRef.cs')
-rw-r--r--mcs/ilasm/codegen/IMethodRef.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/IMethodRef.cs b/mcs/ilasm/codegen/IMethodRef.cs
new file mode 100644
index 00000000000..412398f6447
--- /dev/null
+++ b/mcs/ilasm/codegen/IMethodRef.cs
@@ -0,0 +1,37 @@
+//
+// Mono.ILASM.IMethodRef
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+//
+
+
+using System;
+
+
+namespace Mono.ILASM {
+
+ public interface IMethodRef {
+
+ PEAPI.Method PeapiMethod {
+ get;
+ }
+
+ PEAPI.CallConv CallConv {
+ get;
+ set;
+ }
+
+ void Resolve (CodeGen code_gen);
+
+ BaseTypeRef Owner {
+ get;
+ }
+ }
+
+}
+
+
+