ParseFieldSignature() private method

private ParseFieldSignature ( ) : Type
return System.Type
コード例 #1
0
        public Type ParseFieldSignature(uint offset, TypeDefinition declaringType)
        {
            CheckDisposed();
            var blob = ReadBlob(offset);

            return(SignatureParser.ParseFieldSignature(blob, declaringType));
        }
コード例 #2
0
ファイル: SignatureParser.cs プロジェクト: scottwis/tiny
 public static Type ParseFieldSignature(IReadOnlyList<byte> signature, TypeDefinition declaringType)
 {
     using (var parser = new SignatureParser(signature, declaringType)) {
         return parser.ParseFieldSignature();
     }
 }
コード例 #3
0
ファイル: SignatureParser.cs プロジェクト: dbremner/tiny
 public static Type ParseFieldSignature(IReadOnlyList <byte> signature, TypeDefinition declaringType)
 {
     using (var parser = new SignatureParser(signature, declaringType)) {
         return(parser.ParseFieldSignature());
     }
 }