ParseMethodSignature() private méthode

private ParseMethodSignature ( ) : Method
Résultat Method
Exemple #1
0
 public static Method ParseMethodSignature(IReadOnlyList<byte> signature, MethodDefinition targetMethod)
 {
     using (var parser = new SignatureParser(signature, targetMethod)) {
         return parser.ParseMethodSignature();
     }
 }
Exemple #2
0
 public static Method ParseMethodSignature(IReadOnlyList <byte> signature, MethodDefinition targetMethod)
 {
     using (var parser = new SignatureParser(signature, targetMethod)) {
         return(parser.ParseMethodSignature());
     }
 }