Descriptor for Property and Event methods
상속: MetaDataElement
예제 #1
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal void AddMethod(MethodSemantics meth)
 {
     if (tide == methods.Length) {
         MethodSemantics[] mTmp = methods;
         methods = new MethodSemantics[tide * 2];
         for (int i=0; i < tide; i++) {
             methods[i] = mTmp[i];
         }
     }
     methods[tide++] = meth;
 }
예제 #2
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal static void Read(PEReader buff, TableRow[] methSems)
 {
     for (int i=0; i < methSems.Length; i++)
         methSems[i] = new MethodSemantics(buff);
 }