public Type ParseFieldSignature(uint offset, TypeDefinition declaringType) { CheckDisposed(); var blob = ReadBlob(offset); return(SignatureParser.ParseFieldSignature(blob, declaringType)); }
public static Type ParseFieldSignature(IReadOnlyList<byte> signature, TypeDefinition declaringType) { using (var parser = new SignatureParser(signature, declaringType)) { return parser.ParseFieldSignature(); } }
public static Type ParseFieldSignature(IReadOnlyList <byte> signature, TypeDefinition declaringType) { using (var parser = new SignatureParser(signature, declaringType)) { return(parser.ParseFieldSignature()); } }