| File: Utilities\ValueSetFactory.StringTC.cs | Web Access |
| Project: src\roslyn\src\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj (Microsoft.CodeAnalysis.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp { internal static partial class ValueSetFactory { private class StringTC : IEquatableValueTC<string> { public static readonly StringTC Instance = new StringTC(); private StringTC() { } string IEquatableValueTC<string>.FromConstantValue(ConstantValue constantValue) { var result = constantValue.IsBad ? string.Empty : constantValue.StringValue; Debug.Assert(result != null); return result; } string[] IEquatableValueTC<string>.RandomValues(int count, Random random, int scope) { Debug.Assert(count > 0); Debug.Assert(scope >= count); string[] result = new string[count]; int next = 0; for (int i = 0; i < scope; i++) { int need = count - next; int remain = scope - i; if (random.NextDouble() * remain < need) { result[next++] = i.ToString(); } } Debug.Assert(next == count); return result; } ConstantValue IEquatableValueTC<string>.ToConstantValue(string value) => ConstantValue.Create(value); } } }