示例#1
0
 public MethodReference(CompositeType owner, string name, Prototype prototype) : this()
 {
     Owner     = owner;
     Name      = name;
     Prototype = prototype;
 }
示例#2
0
 public MethodDefinition(ClassDefinition owner, string name, Prototype prototype) : this()
 {
     Owner     = owner;
     Name      = name;
     Prototype = prototype;
 }