1 write to _arguments
Microsoft.CodeAnalysis.ResxSourceGenerator (1)
AbstractResxGenerator.cs (1)
858
_arguments
= arguments.ToList();
5 references to _arguments
Microsoft.CodeAnalysis.ResxSourceGenerator (5)
AbstractResxGenerator.cs (5)
867
public bool HasArguments =>
_arguments
.Count > 0;
869
public string GetArgumentNames() => string.Join(", ",
_arguments
.Select(a => "\"" + a + "\""));
871
public string GetArguments() => string.Join(", ",
_arguments
.Select(GetArgName));
878
return string.Join(", ",
_arguments
.Select(a => $"object{(supportsNullable ? "?" : "")} " + GetArgName(a)));
880
return string.Join(", ",
_arguments
.Select(GetArgName));