dlr bug
[mcs.git] / ilasm / codegen / IMethodRef.cs
blob412398f644795e6074af45720c08f7346f1938bb
1 //
2 // Mono.ILASM.IMethodRef
3 //
4 // Author(s):
5 // Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
11 using System;
14 namespace Mono.ILASM {
16 public interface IMethodRef {
18 PEAPI.Method PeapiMethod {
19 get;
22 PEAPI.CallConv CallConv {
23 get;
24 set;
27 void Resolve (CodeGen code_gen);
29 BaseTypeRef Owner {
30 get;