12 overrides of GetParameterCountFromSyntax
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
287protected sealed override int GetParameterCountFromSyntax() => GetSyntax().ParameterList.ParameterCount;
Symbols\Source\SourceUserDefinedConversionSymbol.cs (1)
104protected override int GetParameterCountFromSyntax()
Symbols\Source\SourceUserDefinedOperatorSymbol.cs (1)
104protected override int GetParameterCountFromSyntax()
Symbols\Synthesized\Records\SynthesizedRecordBaseEquals.cs (1)
36protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordClone.cs (1)
104protected override int GetParameterCountFromSyntax() => 0;
Symbols\Synthesized\Records\SynthesizedRecordDeconstruct.cs (1)
47protected override int GetParameterCountFromSyntax() => _ctor.ParameterCount;
Symbols\Synthesized\Records\SynthesizedRecordEqualityOperatorBase.cs (1)
79protected override int GetParameterCountFromSyntax() => 2;
Symbols\Synthesized\Records\SynthesizedRecordEquals.cs (1)
44protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordGetHashCode.cs (1)
38protected override int GetParameterCountFromSyntax() => 0;
Symbols\Synthesized\Records\SynthesizedRecordObjEquals.cs (1)
39protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordPrintMembers.cs (1)
101protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordToString.cs (1)
47protected override int GetParameterCountFromSyntax() => 0;
2 references to GetParameterCountFromSyntax
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (2)
166Debug.Assert(result == GetParameterCountFromSyntax()); 170return GetParameterCountFromSyntax();