See Also: MethodSignature Members
Example
MethodDefinition method = ...
MethodSignature sig = new MethodSignature ("Dispose");
if (sig.Match (method)) {
//matches any method named "Dispose" with any (or no) return value and any number of parameters
}