17 references to Join
Aspire.Hosting (1)
Exec\ExecResourceManager.cs (1)
226_logger.LogDebug("Exec resource '{ResourceName}' will run command '{Command}' with {ArgsCount} args '{Args}'.", execResourceName, exe, args?.Length ?? 0, string.Join(' ', args ?? []));
CodeStyleConfigFileGenerator (1)
Program.cs (1)
33Console.Error.WriteLine($"Excepted {ExpectedArguments} arguments, found {args.Length}: {string.Join(';', args)}");
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
481return string.Join(' ', lines)
GenerateRulesMissingDocumentation (1)
Program.cs (1)
19await Console.Error.WriteLineAsync($"Excepted {expectedArguments} arguments, found {args.Length}: {string.Join(';', args)}").ConfigureAwait(false);
Microsoft.AspNetCore.Components.WebView (2)
src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (2)
91var candidateDirectoryPath = string.Join('/', segments[depth..]); 213candidatePath = string.Join('/', segments[currentDepth..]);
Microsoft.AspNetCore.Hosting (2)
src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (2)
91var candidateDirectoryPath = string.Join('/', segments[depth..]); 213candidatePath = string.Join('/', segments[currentDepth..]);
Microsoft.AspNetCore.Hosting.Abstractions (1)
HostingAbstractionsWebHostBuilderExtensions.cs (1)
129return hostBuilder.UseSetting(WebHostDefaults.ServerUrlsKey, string.Join(';', urls));
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
74_logger.LogDebug($"Running dotnet CLI command at {_dotnetExecutablePath.Value} in directory {workingDirectory} with arguments '{string.Join(' ', arguments)}'");
Stress.ApiService (1)
Program.cs (1)
127return $"Sent requests to {string.Join(';', urls)}";
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.Debug.cs (1)
39Debug.WriteLine('|' + string.Join('|', chunks) + '|');
System.Windows.Forms.Tests (1)
System\Windows\Forms\AccessibleObjects\LinkLabel.Link.LinkAccessibleObjectTests.cs (1)
213linkLabel.Text = string.Join(' ', names);
System.Xaml (3)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (3)
2014string names = string.Join(',', token.NeededNames.ToArray()); 2053string names = string.Join(',', token.NeededNames.ToArray()); 2107string names = string.Join(',', token.NeededNames.ToArray());
WinFormsControlsTest (1)
Dialogs.cs (1)
38MessageBox.Show(string.Join(',', openFileDialog.FileNames), "File Names");