예제 #1
0
파일: TestRental.cs 프로젝트: JazzCF/BA_CF
    public Type ToType()
    {
        Type t;

        if (!ILReader2.TryGetType(Name, out t))
        {
            return(null);
        }
        return(t);
    }
예제 #2
0
파일: TestRental.cs 프로젝트: JazzCF/BA_CF
 public void DeclareLocals(ILGenerator ilg)
 {
     foreach (string local in Locals)
     {
         Type t;
         if (!ILReader2.TryGetType(local, out t))
         {
             break;
         }
         ilg.DeclareLocal(t);
     }
 }