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::IsGenericMethod Property

 

Gets a value indicating whether the method is a generic method.

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

public:
property bool IsGenericMethod {
	virtual bool get() override;
}

Property Value

Type: System::Boolean

true if the method is generic; otherwise, false.

A method is generic if it has type parameters. You can make a method generic by calling the DefineGenericParameters method to add type parameters. This change cannot be reversed.

The following code example displays the status of a method. This code is part of a larger example provided for the DefineGenericParameters method.

// Use the IsGenericMethod property to find out if a
// dynamic method is generic, and IsGenericMethodDefinition
// to find out if it defines a generic method.
Console::WriteLine("Is SampleMethod generic? {0}",
    sampleMethodBuilder->IsGenericMethod);
Console::WriteLine(
    "Is SampleMethod a generic method definition? {0}",
    sampleMethodBuilder->IsGenericMethodDefinition);

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