Base:
property
Arity
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.Arity
8 references to Arity
Microsoft.CodeAnalysis.CSharp (8)
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
215
Debug.Assert(method.
Arity
== 0, "Generic Ctor, What to do?");
Binder\BinderFactory.cs (1)
151
Debug.Assert(constructor.
Arity
== 0, "Generic Ctor, What to do?");
Compiler\MethodBodySynthesizer.Lowered.cs (2)
326
if (this.
Arity
> 0)
328
Debug.Assert(this.
Arity
== methodBeingWrapped.Arity);
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (1)
53
if (this.Name == WellKnownMemberNames.DestructorName && this.ParameterCount == 0 && this.
Arity
== 0 && this.ReturnsVoid)
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
169
if (this.
Arity
!= 0 && (syntax.ExplicitInterfaceSpecifier != null || IsOverride))
765
Debug.Assert(definition.
Arity
== implementation.
Arity
);