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