Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

MethodBuilder::GetGenericMethodDefinition Method ()

 

Returns this method.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual MethodInfo^ GetGenericMethodDefinition() override

Return Value

Type: System.Reflection::MethodInfo^

The current instance of MethodBuilder.

Exception Condition
InvalidOperationException

The current method is not generic. That is, the IsGenericMethod property returns false.

A MethodBuilder cannot be used to emit a constructed generic method directly. The emitted method is a generic method definition.

For more information, see MethodInfo::IsGenericMethod and MethodInfo::GetGenericMethodDefinition. For information on generic types, see Type::IsGenericType.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft