public Type ToType() { Type t; if (!ILReader2.TryGetType(Name, out t)) { return(null); } return(t); }
public void DeclareLocals(ILGenerator ilg) { foreach (string local in Locals) { Type t; if (!ILReader2.TryGetType(local, out t)) { break; } ilg.DeclareLocal(t); } }