Base:
method
ToString
System.ValueType.ToString()
17 references to ToString
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Semantics\PatternSwitchTests.cs (3)
1361
Diagnostic(ErrorCode.ERR_DuplicateCaseLabel, "case 1.01f:").WithArguments(1.01f.
ToString
()).WithLocation(46, 13),
1364
Diagnostic(ErrorCode.ERR_DuplicateCaseLabel, "case -0.0f:").WithArguments((-0.0f).
ToString
()).WithLocation(67, 13),
1367
Diagnostic(ErrorCode.ERR_DuplicateCaseLabel, "case -float.NaN:").WithArguments((-float.NaN).
ToString
()).WithLocation(68, 13),
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (8)
Semantics\NullableConversionTests.cs (8)
766
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int?)float.MaxValue").WithArguments(float.MaxValue.
ToString
(), "int").WithLocation(22, 13),
769
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int?)float.NaN").WithArguments(float.NaN.
ToString
(), "int").WithLocation(23, 13),
772
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int?)float.NegativeInfinity").WithArguments(float.NegativeInfinity.
ToString
(), "int").WithLocation(24, 13),
775
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int?)float.PositiveInfinity").WithArguments(float.PositiveInfinity.
ToString
(), "int").WithLocation(25, 13),
790
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int)float.MaxValue").WithArguments(float.MaxValue.
ToString
(), "int").WithLocation(36, 13),
793
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int)float.NaN").WithArguments(float.NaN.
ToString
(), "int").WithLocation(37, 13),
796
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int)float.NegativeInfinity").WithArguments(float.NegativeInfinity.
ToString
(), "int").WithLocation(38, 13),
799
Diagnostic(ErrorCode.ERR_ConstOutOfRangeChecked, "(int)float.PositiveInfinity").WithArguments(float.PositiveInfinity.
ToString
(), "int").WithLocation(39, 13)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
SymbolDisplay\ObjectDisplayTests.cs (1)
299
Assert.Equal("12,5", singleValue.
ToString
());
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
SymbolDisplay\ObjectDisplayTests.vb (1)
248
Assert.Equal("12,5", singleValue.
ToString
())
Microsoft.ML.Data (1)
Dirty\PredictionUtils.cs (1)
99
sb.Append(a[0].
ToString
());
Microsoft.ML.StandardTrainers (1)
Standard\ModelStatistics.cs (1)
503
return probZ.
ToString
();
Microsoft.ML.Tests (1)
Transformers\CustomMappingTests.cs (1)
100
Action<MyInput, MyOutput> mapping = (input, output) => output.Together = input.Float1.
ToString
();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
1994
return value.
ToString
();