public void Remove(MethodReference value)
 {
     List.Remove(value);
 }
 public void Insert(int index, MethodReference value)
 {
     List.Insert(index, value);
 }
 public int IndexOf(MethodReference value)
 {
     return(List.IndexOf(value));
 }
 public bool Contains(MethodReference value)
 {
     return(List.Contains(value));
 }
 public void Add(MethodReference value)
 {
     List.Add(value);
 }
示例#6
0
 public FunctionPointerType(bool hasThis, bool explicitThis, MethodCallingConvention callConv, MethodReturnType retType) :
     base(retType.ReturnType)
 {
     m_function            = new MethodReference("method", hasThis, explicitThis, callConv);
     m_function.ReturnType = retType;
 }