The `GetMethod` method in C# Mono.Cecil.TypeDefinition class allows the retrieval of a specific method within a type definition. This method takes the name of the desired method as a parameter and returns the corresponding `Mono.Cecil.MethodDefinition` object if found. It enables developers to programmatically manipulate and analyze methods within a C# assembly, such as modifying method bodies, accessing method attributes, or examining the signature of a method.
C# (CSharp) Mono.Cecil TypeDefinition.GetMethod - 28 examples found. These are the top rated real world C# (CSharp) examples of Mono.Cecil.TypeDefinition.GetMethod extracted from open source projects. You can rate examples to help us improve the quality of examples.