© 2026 Hedgehog Software, LLC
List<string> testList = new List<string>(); testList.Add(Enumerable.Range(1, 200) .Select(n => n % 15 == 0 ? "FizzBuzz" : n % 3 == 0 ? "Fizz" : n % 5 == 0 ? "Buzz" : n.ToString()).ToString());
"System.Linq.Enumerable+SelectRangeIterator'1[System.String]"