Base:
property
IsGenericMethod
System.Reflection.MethodBase.IsGenericMethod
2 references to IsGenericMethod
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (2)
504public override MethodInfo GetGenericMethodDefinition() { if (!IsGenericMethod) throw new InvalidOperationException(); return this; } 537internal void ThrowIfGeneric() { if (IsGenericMethod && !IsGenericMethodDefinition) throw new InvalidOperationException(); }