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