7 references to ParamArray
Microsoft.Analyzers.Extra (1)
CallAnalysis\Fixers\LegacyLoggingFixer.cs (1)
496if (arg.ArgumentKind == ArgumentKind.ParamArray)
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
6305if (argument is { ArgumentKind: ArgumentKind.ParamArray, Value: IArrayCreationOperation array })
Microsoft.CodeAnalysis.CSharp (1)
Operations\CSharpOperationFactory_Methods.cs (1)
348argumentKind = argument.Type?.IsSZArray() == true ? ArgumentKind.ParamArray : ArgumentKind.ParamCollection;
Microsoft.CodeAnalysis.Features (1)
InlineMethod\AbstractInlineMethodRefactoringProvider.MethodParametersInfo.cs (1)
502if (argumentOperation.ArgumentKind == ArgumentKind.ParamArray
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\TestOperationVisitor.cs (1)
579Assert.Contains(operation.ArgumentKind, new[] { ArgumentKind.DefaultValue, ArgumentKind.Explicit, ArgumentKind.ParamArray, ArgumentKind.ParamCollection });
Diagnostics\OperationTestAnalyzer.cs (2)
560if (argument.ArgumentKind == ArgumentKind.ParamArray) 1737if (((IArgumentOperation)operation).ArgumentKind == ArgumentKind.ParamArray)