System.Reflection.MethodBase.IsGenericMethod Property

Gets a value indicating whether the method is generic.

Syntax

public virtual bool IsGenericMethod { get; }

Value

true if the current object is a generic method; otherwise false.

Remarks

Use the MethodBase.IsGenericMethod property to determine whether the current System.Reflection.MethodBase object represents a generic method. Use the MethodBase.ContainsGenericParameters property to determine whether the current System.Reflection.MethodBase object represents an open constructed method or a closed constructed method.

Note:

Generics are not supported by default; this property returns false if not overridden in a derived class. Generic constructors are not supported in the .NET Framework version 2.0, so this property returns false if the current instance is of type System.Reflection.ConstructorInfo.

For a list of the invariant conditions for terms specific to generic methods, see the MethodInfo.IsGenericMethod property. For a list of the invariant conditions for other terms used in generic reflection, see the Type.IsGenericType property.

Requirements

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0