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