ParseFieldSignature() приватный Метод

private ParseFieldSignature ( ) : Type
Результат System.Type
Пример #1
0
        public Type ParseFieldSignature(uint offset, TypeDefinition declaringType)
        {
            CheckDisposed();
            var blob = ReadBlob(offset);

            return(SignatureParser.ParseFieldSignature(blob, declaringType));
        }
Пример #2
0
 public static Type ParseFieldSignature(IReadOnlyList<byte> signature, TypeDefinition declaringType)
 {
     using (var parser = new SignatureParser(signature, declaringType)) {
         return parser.ParseFieldSignature();
     }
 }
Пример #3
0
 public static Type ParseFieldSignature(IReadOnlyList <byte> signature, TypeDefinition declaringType)
 {
     using (var parser = new SignatureParser(signature, declaringType)) {
         return(parser.ParseFieldSignature());
     }
 }