Base:
property
IsGenericMethod
System.Reflection.MethodBase.IsGenericMethod
2 references to IsGenericMethod
mscorlib (2)
system\reflection\emit\methodbuilder.cs (2)
683
public override MethodInfo GetGenericMethodDefinition() { if (!
IsGenericMethod
) throw new InvalidOperationException(); return this; }
722
internal void ThrowIfGeneric () { if (
IsGenericMethod
&& !IsGenericMethodDefinition) throw new InvalidOperationException (); }