Base:
property
IsVararg
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.IsVararg
3 references to IsVararg
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Source\SourceConstructorSymbolBase.cs (1)
73if (this.IsVararg && (IsGenericMethod || ContainingType.IsGenericType || _lazyParameters.Length > 0 && _lazyParameters[_lazyParameters.Length - 1].IsParams))
Symbols\Source\SourceMemberMethodSymbol.cs (1)
689var cc = IsVararg ? Cci.CallingConvention.ExtraArguments : Cci.CallingConvention.Default;
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
795bool isVararg = this.IsVararg;