From 4e449cba61ebcdfe28ffa646048fa4c986613110 Mon Sep 17 00:00:00 2001 From: Dick Baker Date: Fri, 8 Mar 2024 09:31:26 +0000 Subject: [PATCH] spaces matter imprecise output result: spaces matter --- .../Enumerable/AggregateTSource/enumerable.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/snippets/csharp/System.Linq/Enumerable/AggregateTSource/enumerable.cs b/snippets/csharp/System.Linq/Enumerable/AggregateTSource/enumerable.cs index 3b993ac801c..6c82f82b7d6 100644 --- a/snippets/csharp/System.Linq/Enumerable/AggregateTSource/enumerable.cs +++ b/snippets/csharp/System.Linq/Enumerable/AggregateTSource/enumerable.cs @@ -2074,12 +2074,12 @@ static void SelectEx2() /* This code produces the following output: - {index=0, str=} - {index=1, str=b} - {index=2, str=ma} - {index=3, str=ora} - {index=4, str=pass} - {index=5, str=grape} + { index = 0, str = } + { index = 1, str = b } + { index = 2, str = ma } + { index = 3, str = ora } + { index = 4, str = pass } + { index = 5, str = grape } */ // }