229 references to Join
Aspire.Dashboard (2)
Model\Otlp\ApplicationsSelectHelpers.cs (2)
59""", name, string.Join(Environment.NewLine, applications), string.Join(Environment.NewLine, matches));
Aspire.Hosting (2)
Health\ResourceHealthCheckService.cs (1)
122logger.LogDebug("Resource '{Resource}' health checks to monitor: {HeathCheckKeys}", resource.Name, string.Join(", ", registrationKeysToCheck));
Orchestrator\RelationshipEvaluator.cs (1)
77throw new InvalidOperationException($"Circular dependency detected: {string.Join(" -> ", visited)} -> {parent}");
dotnet-razorpagegenerator (1)
Program.cs (1)
130var diagnostics = string.Join(Environment.NewLine, cSharpDocument.Diagnostics);
HttpStress (1)
Program.cs (1)
380Console.WriteLine(" HTTP Versions: " + string.Join<Version>(", ", httpVersions));
installer.tasks (1)
StaticFileRegeneration\TpnDocument.cs (1)
66string.Join(Environment.NewLine + Environment.NewLine, Sections) +
LocalizationWebsite (1)
StartupGetAllStrings.cs (1)
42await context.Response.WriteAsync(string.Join(" ", strings));
Microsoft.AspNetCore.App.Analyzers.Test (1)
RouteEmbeddedLanguage\RoutePatternHighlighterTests.cs (1)
469throw new Exception($"Unmatched highlight spans in document: {string.Join(", ", tempSpans)}");
Microsoft.AspNetCore.Authorization (1)
LoggingExtensions.cs (1)
21: "These requirements were not met:" + Environment.NewLine + string.Join(Environment.NewLine, failure.FailedRequirements);
Microsoft.AspNetCore.HostFiltering (1)
MiddlewareConfigurationManager.cs (1)
55_logger.AllowedHosts(string.Join("; ", allowedHosts));
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
Infrastructure\HttpClientExtensions.cs (1)
42string responseContent = string.Join(Environment.NewLine, response.Headers);
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DefaultPageHandlerMethodSelector.cs (1)
51var ambiguousMethods = string.Join(", ", ambiguousMatches.Select(m => m.MethodInfo));
Microsoft.AspNetCore.Mvc.Test (1)
MvcServiceCollectionExtensionsTest.cs (1)
626string.Join(Environment.NewLine, serviceDescriptors.Select(sd => sd.ImplementationType)));
Microsoft.AspNetCore.OpenApi.SourceGenerators.Tests (1)
SnapshotTestHelper.cs (1)
72throw new InvalidOperationException($"Failed to compile class library {classLibrary.Key}: {string.Join(Environment.NewLine, emitResult.Diagnostics)}");
Microsoft.AspNetCore.Routing (1)
UriBuildingContext.cs (1)
320return $@"Accepted = ""{_path}"", Buffered = ""{string.Join("", _buffer)}""";
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
RequestTests.cs (1)
398Assert.False(errorLogs.Any(), string.Join(" ", errorLogs));
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (2)
1151MSBuildEventSource.Log.BuildProjectStart(_requestEntry.RequestConfiguration.ProjectFullPath, string.Join(", ", allTargets)); 1209string.Join(", ", allTargets));
Microsoft.Build.Engine.UnitTests (7)
BinaryLogger_Tests.cs (7)
260$"Buffers starting at position {readCount} differ. First:{Environment.NewLine}{string.Join(",", bytes1)}{Environment.NewLine}Second:{Environment.NewLine}{string.Join(",", bytes2)}"); 465$"Embedded files: {string.Join(",", zipArchive.Entries)}"); 525customMessage: $"Embedded files: {string.Join(",", zipArchive.Entries)}"); 527customMessage: $"Embedded files: {string.Join(",", zipArchive.Entries)}"); 529customMessage: $"Embedded files: {string.Join(",", zipArchive.Entries)}"); 531customMessage: $"Embedded files: {string.Join(",", zipArchive.Entries)}");
Microsoft.Build.Framework (1)
BuildCheck\EnumerableExtensions.cs (1)
23return source == null ? "<NULL>" : string.Join(useSpace ? ", " : ",", source);
Microsoft.Build.UnitTests.Shared (1)
ObjectModelHelpers.cs (1)
305customMessage: $"got items \"{string.Join(", ", items)}\", expected \"{string.Join(", ", expectedItems)}\"");
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\SymbolDeclaredCompilationEvent.cs (1)
53var loc = DeclaringSyntaxReferences.Length != 0 ? " @ " + string.Join(", ", System.Linq.Enumerable.Select(DeclaringSyntaxReferences, r => r.GetLocation().GetLineSpan())) : null;
InternalUtilities\ImmutableSetWithInsertionOrder`1.cs (1)
66return "{" + string.Join(", ", this) + "}";
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\Matcher.ChoiceMatcher.cs (1)
30=> $"({string.Join("|", _matchers)})";
Microsoft.CodeAnalysis.CSharp (7)
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (5)
364sb.AppendFormat("Inferring method type parameters <{0}>\n", string.Join(", ", _methodTypeParameters)); 379sb.AppendFormat("Argument types ({0})\n", string.Join(", ", from a in _arguments select a.Type)); 428sb.AppendFormat("upper bounds: ({0}) ", (_upperBounds[i] == null) ? "" : string.Join(", ", _upperBounds[i])); 429sb.AppendFormat("lower bounds: ({0}) ", (_lowerBounds[i] == null) ? "" : string.Join(", ", _lowerBounds[i])); 430sb.AppendFormat("exact bounds: ({0}) ", (_exactBounds[i] == null) ? "" : string.Join(", ", _exactBounds[i]));
BoundTree\LengthBasedStringSwitchData.cs (1)
266builder.AppendLine($"Buckets: {string.Join(", ", StringBasedJumpTables.Select(t => t.StringCaseLabels.Length))}");
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.ValueDispatchNode.cs (1)
45public override string ToString() => "[" + string.Join(",", Cases.Select(c => c.value)) + "]";
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
880builder.Append(string.Join(", ", parameterList.Parameters.Select(p => ConvertToSingleLine(p.Type))));
Microsoft.CodeAnalysis.CSharp.CodeStyle.UnitTests (1)
src\Analyzers\CSharp\Tests\UseUtf8StringLiteral\UseUtf8StringLiteralTests.cs (1)
828private static readonly byte[] _bytes = new byte[] { {{string.Join(", ", bytes)}} };
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (1)
CodeGen\CodeGenDeconstructTests.cs (1)
2399var expected = String.Join(" ", Enumerable.Range(1, i).Select(n => n));
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (2)
ConvertToInterpolatedString\ConvertPlaceholderToInterpolatedStringTests.cs (1)
79return formatString + "," + string.Join(",", Enumerable.Range(0, numberOfParameters));
src\Analyzers\CSharp\Tests\UseUtf8StringLiteral\UseUtf8StringLiteralTests.cs (1)
828private static readonly byte[] _bytes = new byte[] { {{string.Join(", ", bytes)}} };
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\MethodBodyModelTests.cs (1)
797Assert.Equal(string.Empty, string.Join(Environment.NewLine, comp.GetDiagnostics()));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Symbols\InterfaceImplementationTests.cs (3)
909Assert.False(comp.GetDiagnostics().Any(), string.Join("\n", comp.GetDiagnostics())); 970Assert.False(comp1.GetDiagnostics().Any(), string.Join("\n", comp1.GetDiagnostics())); 976Assert.False(comp2.GetDiagnostics().Any(), string.Join("\n", comp2.GetDiagnostics()));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Syntax\SyntaxListTests.cs (1)
291var commaSeparatedList = string.Join(",", (IEnumerable<char>)alphabet);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (3)
DiagnosticTestUtilities.cs (1)
111actualLength == 0 ? "<none>" : string.Join(Environment.NewLine, actualErrors)));
Extensions.cs (2)
290Assert.True(false, "Found multiple members of specified name:\r\n" + string.Join("\r\n", members)); 306Assert.True(false, "Found multiple members of specified name:\r\n" + string.Join("\r\n", members));
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
880builder.Append(string.Join(", ", parameterList.Parameters.Select(p => ConvertToSingleLine(p.Type))));
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
ObsoleteSymbol\AbstractObsoleteSymbolTests.cs (1)
44string.Join(Environment.NewLine, expectedSpans),
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
ValueTracking\AbstractBaseValueTrackingTests.cs (2)
45Assert.True(itemInfo.Length == items.Length, $"GetTrackedItemsAsync\n\texpected: [{string.Join(",", itemInfo.Select(p => p.text))}]\n\t actual: [{string.Join(",", items)}]"); 58Assert.True(childInfo.Length == children.Length, $"GetTrackedItemsAsync on [{item}]\n\texpected: [{string.Join(",", childInfo.Select(p => p.text))}]\n\t actual: [{string.Join(",", children)}]");
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
SignatureHelp\FSharpSignatureHelpItem.cs (1)
78var parameters = string.Join(string.Concat(SeparatorDisplayParts), Parameters);
Microsoft.CodeAnalysis.Features (1)
SignatureHelp\SignatureHelpItem.cs (1)
98var parameters = string.Join(string.Concat(SeparatorDisplayParts), Parameters);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (2)
125throw new InvalidOperationException($"Language specific handlers for {methodGroup.Key} have mis-matched number of parameters:{Environment.NewLine}{string.Join(Environment.NewLine, methodGroup)}"); 130throw new InvalidOperationException($"Language specific handlers for {methodGroup.Key} have mis-matched number of returns:{Environment.NewLine}{string.Join(Environment.NewLine, methodGroup)}");
Microsoft.CodeAnalysis.Scripting (1)
Hosting\ObjectFormatter\CommonTypeNameFormatter.cs (1)
86var typeName = string.Join(".", stack);
Microsoft.CodeAnalysis.Test.Utilities (7)
Assert\AssertEx.cs (1)
876Fail($"Expected 0 items but found {list.Count}: {message}\r\nItems:\r\n {string.Join("\r\n ", list)}");
Diagnostics\TrackingDiagnosticAnalyzer.cs (5)
102Assert.True(expectedMissingSyntaxKinds.Count == 0, "AllInOne test contains ignored SyntaxKinds: " + string.Join(", ", expectedMissingSyntaxKinds)); 167Environment.NewLine + "Expected: " + string.Join(", ", expected) + 168Environment.NewLine + "Actual: " + string.Join(", ", actual)); 177Environment.NewLine + "Missing: " + string.Join(", ", missingElements) + 178Environment.NewLine + "Present: " + string.Join(", ", presentElements));
Mocks\MoqExtensions.cs (1)
18invocations.Select(i => $"{i.Method.Name}: {string.Join(",", i.Arguments)}"));
Microsoft.CodeAnalysis.UnitTests (6)
Diagnostics\SuppressMessageTargetSymbolResolverTests.cs (3)
1375fxCopName, expectedSymbol, string.Join("\r\n", symbols))); 1389fxCopName, string.Join("\r\n", expectedSymbols), symbol)); 1421fxCopName, string.Join("\r\n", symbols)));
Text\TextChangeTests.cs (3)
965var originalText = SourceText.From(string.Join("", Enumerable.Range(0, random.Next(10)))); 978var newText = string.Join("", Enumerable.Repeat('a', random.Next(oldMaxInsertLength))); 998var newText = string.Join("", Enumerable.Repeat('b', random.Next(newMaxInsertLength)));
Microsoft.CodeAnalysis.VisualBasic.Workspaces.UnitTests (1)
EmbeddedLanguages\VirtualChars\VisualBasicVirtualCharServiceTests.vb (1)
87Return String.Join("", strings.ToImmutableAndFree())
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\Matcher.ChoiceMatcher.cs (1)
30=> $"({string.Join("|", _matchers)})";
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Compilers\Core\Portable\InternalUtilities\ImmutableSetWithInsertionOrder`1.cs (1)
66return "{" + string.Join(", ", this) + "}";
Microsoft.CommonLanguageServerProtocol.Framework.Package (2)
AbstractLanguageServer.cs (2)
125throw new InvalidOperationException($"Language specific handlers for {methodGroup.Key} have mis-matched number of parameters:{Environment.NewLine}{string.Join(Environment.NewLine, methodGroup)}"); 130throw new InvalidOperationException($"Language specific handlers for {methodGroup.Key} have mis-matched number of returns:{Environment.NewLine}{string.Join(Environment.NewLine, methodGroup)}");
Microsoft.DotNet.Build.Tasks.Feed (2)
src\model\TargetChannelConfig.cs (1)
84$"\n {string.Join("\n ", TargetFeeds.Select(f => $"{string.Join(", ", f.ContentTypes)} -> {f.FeedUrl}"))}" +
src\PublishBuildToMaestro.cs (1)
193var defaultChannelsStr = "[" + string.Join("][", targetChannelIds) + "]";
Microsoft.DotNet.Build.Tasks.Packaging (1)
ValidatePackage.cs (1)
417Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is has an assembly version entry(s) for {String.Join(", ", orphanedAssemblyVersions)} which are no longer in package {PackageId}. Please run /t:UpdatePackageIndex on this project to commit an update.");
Microsoft.DotNet.SignTool.Tests (1)
SignToolTests.cs (1)
360var actualXmlElementsPerSigningRound = buildEngine.FilesToSign.Select(round => string.Join(Environment.NewLine, round));
Microsoft.Extensions.AI.Abstractions (1)
Contents\FunctionCallContent.cs (1)
117$"{Name}({string.Join(", ", Arguments)})" :
Microsoft.Extensions.AI.Tests (1)
ChatCompletion\FunctionInvokingChatClientTests.cs (1)
767? [new TextContent($"The search results were '{string.Join(", ", frcs.Select(frc => frc.Result))}'")]
Microsoft.Extensions.Caching.Hybrid.Tests (2)
LogCollector.cs (2)
60Assert.Equal(string.Join(",", errorIds), string.Join(",", _items.Select(static x => x.eventId.Id)));
Microsoft.Extensions.ServiceDiscovery.Abstractions (1)
ServiceEndpointSource.cs (1)
58return $"[{string.Join(", ", eps)}]";
Microsoft.Interop.SourceGeneration (1)
Marshalling\GeneratorDiagnostic.cs (1)
57DiagnosticProperties.Add(WellKnownDiagnosticTags.Unnecessary, $"[{string.Join(",", Enumerable.Range(0, UnnecessaryDataLocations.Length))}]"),
Microsoft.Maui.Controls (1)
DoubleCollectionConverter.cs (1)
51 return string.Join(", ", dc);
Microsoft.Maui.Controls.Build.Tasks (8)
ModuleDefinitionExtensions.cs (8)
15 var typeKey = $"{type}<{string.Join(",", classArguments)}>"; 64 var ctorKey = $"{type}<{(string.Join(",", classArguments))}>.ctor({(string.Join(",", Enumerable.Repeat("_", paramCount)))})"; 76 var ctorKey = $"{type}<{(string.Join(",", classArguments))}>.ctor({(parameterTypes == null ? "" : string.Join(",", parameterTypes))})"; 90 var ctorKey = $"{type}.ctor({(parameterTypes == null ? "" : string.Join(",", parameterTypes))})"; 194 var methodKey = $"{(isStatic ? "static " : "")}{type}<{(classArguments == null ? "" : string.Join(",", classArguments))}>.({(parameterTypes == null ? "" : string.Join(",", parameterTypes))})"; 220 var methodKey = $"{(isStatic ? "static " : "")}{type}<{(classArguments == null ? "" : string.Join(",", classArguments))}>.({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
Microsoft.Maui.Essentials (1)
Connectivity\Connectivity.shared.cs (1)
161 $"{nameof(ConnectionProfiles)}: [{string.Join(", ", ConnectionProfiles)}]";
Microsoft.ML.AutoML (5)
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
92return string.Join("=>", estimatorName);
SweepableEstimator\SweepablePipeline.cs (1)
166return string.Join("=>", estimatorStrings);
Tuner\AutoZeroTuner.cs (2)
34pipelineString = string.Join("=>", t.ValueEntities().Select(e => _sweepablePipeline.Estimators[e.ToString()].EstimatorType)), 57throw new ArgumentException($"Fail to find available configs for given trainers: {string.Join(",", trainerEstimators)}");
Utils\UserInputValidationUtil.cs (1)
279$"but only types {string.Join(", ", allowedTypes)} are allowed.");
Microsoft.ML.CodeGenerator (1)
Utils.cs (1)
28return string.Join("", name.Select(x => Char.IsLetterOrDigit(x) ? x : '_'));
Microsoft.ML.Data (2)
Commands\TypeInfoCommand.cs (2)
126string srcStrings = string.Join(", ", srcs.OrderBy(k => k).Select(k => '`' + k.GetString() + '`')); 127string dstStrings = string.Join(", ", dsts.OrderBy(k => k).Select(k => '`' + k.GetString() + '`'));
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3314string featureList = string.Join(" OR \n",
Microsoft.ML.GenAI.Core (1)
Extension\ModuleExtension.cs (1)
278var shapeStr = string.Join(", ", value.shape);
Microsoft.ML.LightGbm (1)
LightGbmRankingTrainer.cs (1)
169res[GetOptionName(nameof(CustomGains))] = string.Join(",", CustomGains);
Microsoft.ML.OnnxTransformer (3)
OnnxTransform.cs (1)
561throw Contracts.Except($"Input shape mismatch: Input '{_parent.Inputs[i]}' has shape {String.Join(",", inputShape)}, but input data is of length {typeValueCount}.");
OnnxUtils.cs (2)
319"The specified shape " + string.Join(",", shapeDictionary[name]) + 320" is not compatible with the shape " + string.Join(",", meta.Dimensions) +
Microsoft.ML.Samples (89)
Dynamic\DataOperations\FilterRowsByMissingValues.cs (1)
48$"\t({string.Join(", ", row.Feature2)})");
Dynamic\SimpleDataViewImplementation.cs (1)
65$"{string.Join(", ", tokensValue.DenseValues())}");
Dynamic\Trainers\Clustering\KMeans.cs (2)
81string.Join(", ", centroids[0].GetValues().ToArray().Take(3))); 85string.Join(", ", centroids[1].GetValues().ToArray().Take(3)));
Dynamic\Trainers\Clustering\KMeansWithOptions.cs (2)
89string.Join(", ", centroids[0].GetValues().ToArray().Take(3))); 93string.Join(", ", centroids[1].GetValues().ToArray().Take(3)));
Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
147Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
Dynamic\Trainers\MulticlassClassification\ImageClassification\LearningRateSchedulingCifarResnetTransferLearning.cs (1)
173Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
171$"Scores : [{string.Join(",", prediction.Score)}], " +
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
156Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
Dynamic\Transforms\Categorical\OneHotEncodingMultiColumn.cs (2)
51Console.WriteLine("{0}\t\t\t{1}", string.Join(" ", item.Education), 52string.Join(" ", item.ZipCode));
Dynamic\Transforms\Categorical\OneHotHashEncodingMultiColumn.cs (2)
52Console.WriteLine("{0}\t\t\t{1}", string.Join(" ", item.Education), 53string.Join(" ", item.ZipCode));
Dynamic\Transforms\Concatenate.cs (1)
66Console.WriteLine(string.Join(" ", featureRow.Features));
Dynamic\Transforms\Conversion\MapValueToArray.cs (1)
58$"{string.Join(",", featureRow.Features)}");
Dynamic\Transforms\Expression.cs (3)
54Console.Write(string.Join(" ", featureRow.Expr1)); 56Console.Write(string.Join(" ", featureRow.Expr2)); 58Console.Write(string.Join(" ", featureRow.Expr3));
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnCount.cs (2)
22Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item 52Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item.
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnCountMultiColumn.cs (2)
22Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item. 52Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnMutualInformation.cs (2)
22Console.WriteLine("{0,-25} {1,-25}", item.Label, string.Join(",", 50Console.WriteLine("{0,-25}", string.Join(",", item.NumericVector));
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnMutualInformationMultiColumn.cs (4)
22Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item 23.NumericVectorA), string.Join(",", item.NumericVectorB)); 53Console.WriteLine("{0,-25} {1,-25}", string.Join(",", item 54.NumericVectorA), string.Join(",", item.NumericVectorB));
Dynamic\Transforms\ImageAnalytics\ConvertToImage.cs (2)
77Console.WriteLine("{0, -25} {1, -25} {2, -25}", string.Join(",", 80string.Join(",", pixels.DenseValues().Take(5)) + "...");
Dynamic\Transforms\ImageAnalytics\ExtractPixels.cs (1)
113string.Join(",", pixels.DenseValues().Take(5)) + "...");
Dynamic\Transforms\IndicateMissingValues.cs (2)
46Console.WriteLine("Features: [" + string.Join(", ", row.Features) + 47"]\t MissingIndicator: [" + string.Join(", ", row
Dynamic\Transforms\IndicateMissingValuesMultiColumn.cs (4)
54Console.WriteLine("Features1: [" + string.Join(", ", row 55.Features1) + "]\t MissingIndicator1: [" + string.Join(", ", 56row.MissingIndicator1) + "]\t Features2: [" + string.Join(", ", 57row.Features2) + "]\t MissingIndicator2: [" + string.Join(", ",
Dynamic\Transforms\NormalizeBinning.cs (2)
88Console.WriteLine("Bins upper bounds are: " + string.Join(" ", 109Console.WriteLine("Bins upper bounds are: " + string.Join(" ",
Dynamic\Transforms\NormalizeSupervisedBinning.cs (2)
105Console.WriteLine("Bins upper borders are: " + string.Join(" ", 127Console.WriteLine("Bins upper borders are: " + string.Join(" ",
Dynamic\Transforms\ReplaceMissingValues.cs (4)
51Console.WriteLine("Features: [" + string.Join(", ", row.Features) + 52"]\t MissingReplaced: [" + string.Join(", ", row 81Console.WriteLine("Features: [" + string.Join(", ", row.Features) + 82"]\t MissingReplaced: [" + string.Join(", ", row
Dynamic\Transforms\ReplaceMissingValuesMultiColumn.cs (8)
57Console.WriteLine("Features1: [" + string.Join(", ", row 58.Features1) + "]\t MissingReplaced1: [" + string.Join(", ", row 59.MissingReplaced1) + "]\t Features2: [" + string.Join(", ", row 60.Features2) + "]\t MissingReplaced2: [" + string.Join(", ", row 92Console.WriteLine("Features1: [" + string.Join(", ", row 93.Features1) + "]\t MissingReplaced1: [" + string.Join(", ", row 94.MissingReplaced1) + "]\t Features2: [" + string.Join(", ", row 95.Features2) + "]\t MissingReplaced2: [" + string.Join(", ", row
Dynamic\Transforms\TimeSeries\Forecasting.cs (3)
62Console.WriteLine("[{0}]", string.Join(", ", forecast.Forecast)); 87Console.WriteLine("[{0}]", string.Join(", ", forecast.Forecast)); 92Console.WriteLine("[{0}]", string.Join(", ", forecast.Forecast));
Dynamic\Transforms\TimeSeries\ForecastingWithConfidenceInterval.cs (1)
113Console.WriteLine("[{0}]", string.Join(", ", forecast));
Dynamic\Transforms\TimeSeries\LocalizeRootCause.cs (1)
31Console.WriteLine($"Score: {item.Score}, Path: {String.Join(" ", item.Path)}, Direction: {item.Direction}, Dimension:{String.Join(" ", item.Dimension)}");
Dynamic\Transforms\TimeSeries\LocalizeRootCauseMultidimension.cs (1)
34Console.WriteLine($"Score: {item.Score}, Path: {String.Join(" ", item.Path)}, Direction: {item.Direction}, Dimension:{String.Join(" ", item.Dimension)}");
Dynamic\Transforms\TreeFeaturization\FastForestBinaryFeaturizationWithOptions.cs (4)
90Console.WriteLine("The original feature vector [" + String.Join( 94Console.WriteLine(" Trees' output values: [" + String.Join(",", 98.Join(",", transformedDataPoint.Leaves) + "]."); 101.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\FastForestRegressionFeaturizationWithOptions.cs (4)
91Console.WriteLine("The original feature vector [" + String.Join(",", 95Console.WriteLine(" Trees' output values: [" + String.Join(",", 99.Join(",", transformedDataPoint.Leaves) + "]."); 102.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\FastTreeBinaryFeaturizationWithOptions.cs (4)
92Console.WriteLine("The original feature vector [" + String.Join( 96Console.WriteLine(" Trees' output values: [" + String.Join(",", 100.Join(",", transformedDataPoint.Leaves) + "]."); 103.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\FastTreeRankingFeaturizationWithOptions.cs (4)
88Console.WriteLine("The original feature vector [" + String.Join(",", 92Console.WriteLine(" Trees' output values: [" + String.Join(",", 96.Join(",", transformedDataPoint.Leaves) + "]."); 99.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\FastTreeRegressionFeaturizationWithOptions.cs (4)
91Console.WriteLine("The original feature vector [" + String.Join(",", 95Console.WriteLine(" Trees' output values: [" + String.Join(",", 99.Join(",", transformedDataPoint.Leaves) + "]."); 102.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\FastTreeTweedieFeaturizationWithOptions.cs (4)
91Console.WriteLine("The original feature vector [" + String.Join(",", 95Console.WriteLine(" Trees' output values: [" + String.Join(",", 99.Join(",", transformedDataPoint.Leaves) + "]."); 102.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\Transforms\TreeFeaturization\PretrainedTreeEnsembleFeaturizationWithOptions.cs (4)
81Console.WriteLine("The original feature vector [" + String.Join( 85Console.WriteLine(" Trees' output values: [" + String.Join(",", 89.Join(",", transformedDataPoint.Leaves) + "]."); 92.Join(",", transformedDataPoint.Paths) + "].");
Dynamic\WithOnFitDelegate.cs (1)
68var upperBounds = string.Join(", ", binningParam.UpperBounds[i]);
Microsoft.ML.Samples.GPU (4)
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
147Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\LearningRateSchedulingCifarResnetTransferLearning.cs (1)
173Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
171$"Scores : [{string.Join(",", prediction.Score)}], " +
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
156Console.WriteLine($"Scores : [{string.Join(",", prediction.Score)}], " +
Microsoft.ML.Tests (3)
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (1)
126var upperBounds = string.Join(", ", binningParam.UpperBounds[i]);
Transformers\CustomMappingTests.cs (2)
40output.Together = $"{input.Float1} + {string.Join(", ", input.Float4)}"; 82Assert.True(inputs.Zip(outputs, (x, y) => y.Together == $"{x.Float1} + {string.Join(", ", x.Float4)}").All(x => x));
Microsoft.ML.Transforms (1)
MutualInformationFeatureSelection.cs (1)
505ch.Trace("Scores for column '{0}': {1}", columns[i], string.Join(", ", scores[i]));
Microsoft.ML.Vision (1)
ImageClassificationTrainer.cs (1)
899writer.WriteLine(row.Item1 + "," + string.Join(",", row.Item2));
PresentationFramework (2)
System\Windows\Documents\TextMapOffsetErrorLogger.cs (1)
74TextMapText = string.Join(string.Empty, textMap.Text),
System\Windows\Documents\WinRTSpellerInterop.cs (1)
379foreach(string strSentence in new string[]{string.Join(string.Empty, text)})
Roslyn.Test.Performance.Utilities (1)
TraceManager.cs (1)
152var allString = string.Join(",", _durations);
RoutingSandbox (1)
UseRouterStartup.cs (1)
25return httpContext.Response.WriteAsync($"Verb = {request.Method.ToUpperInvariant()} - Path = {request.Path} - Route values - {string.Join(", ", httpContext.GetRouteData().Values)}");
RoutingWebSite (1)
UseRouterStartup.cs (1)
25return httpContext.Response.WriteAsync($"Verb = {request.Method.ToUpperInvariant()} - Path = {request.Path} - Route values - {string.Join(", ", httpContext.GetRouteData().Values)}");
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\DsesFilterAndTransform.cs (1)
966return string.Join(",", (IEnumerable<ElementType>)obj);
System.Drawing.Common.Tests (2)
System\Drawing\Drawing2D\MatrixTests.cs (2)
832Console.WriteLine($"Expected: {string.Join(", ", expected)}"); 833Console.WriteLine($"Actual: {string.Join(", ", actual)}");
System.Net.Mail (1)
System\Net\Mail\MailAddressCollection.cs (1)
50public override string ToString() => string.Join(", ", this);
System.Net.WebSockets (1)
System\Net\WebSockets\WebSocket.cs (1)
104validStatesText = string.Join(", ", validStates);
System.Windows.Forms.Primitives.TestUtilities (6)
Extensions\AssertExtensions.cs (6)
222throw new XunitException($"Expected one of: ({string.Join<Type>(", ", exceptionTypes)}) -> Actual: ({exceptionType}): {e}"); // Log message and callstack to help diagnosis 225throw new XunitException($"Expected one of: ({string.Join<Type>(", ", exceptionTypes)}) -> Actual: No exception thrown"); 402string expectedString = string.Join(", ", expected); 403string actualString = string.Join(", ", actual); 413throw new XunitException($"Expected: {string.Join(", ", expected)}{Environment.NewLine}Actual: {string.Join(", ", actual)}");
WinFormsControlsTest (1)
UserControls\UserControlWithObjectCollectionEditor.cs (1)
37return string.Join(", ", list);
WinShimmer (1)
Program.cs (1)
81throw new InvalidProgramException($"The generated program contained errors: \n{string.Join("\n", emit.Diagnostics.AsEnumerable())}");
xunit.assert (1)
Sdk\Exceptions\SingleException.cs (1)
107 string.Join(", ", matchIndices)