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