Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
65 references to ToString
mscorlib (5)
system\convert.cs (2)
1921
return value.
ToString
(CultureInfo.CurrentCulture);
1926
return value.
ToString
(provider);
system\io\textwriter.cs (1)
268
Write(value.
ToString
(FormatProvider));
system\text\stringbuilder.cs (2)
961
return Append(value.
ToString
(CultureInfo.CurrentCulture));
1198
return Insert(index, value.
ToString
(CultureInfo.CurrentCulture), 1);
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimation.cs (2)
331
defaultOriginValue.
ToString
(CultureInfo.InvariantCulture)));
342
defaultDestinationValue.
ToString
(CultureInfo.InvariantCulture)));
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
2016
Output.Write(s.
ToString
(CultureInfo.InvariantCulture));
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1227
Output.Write(s.
ToString
(CultureInfo.InvariantCulture));
System.Data (2)
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
115
return IsNull ? SQLResource.NullString : m_value.
ToString
((IFormatProvider)null);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
551
return x.IsNull ? Null : new SqlString((x.Value).
ToString
((IFormatProvider)null));
System.Drawing (6)
commonui\System\Drawing\Advanced\RectangleF.cs (4)
488
return "{X=" + X.
ToString
(CultureInfo.CurrentCulture) + ",Y=" + Y.
ToString
(CultureInfo.CurrentCulture) +
489
",Width=" + Width.
ToString
(CultureInfo.CurrentCulture) +
490
",Height=" + Height.
ToString
(CultureInfo.CurrentCulture) + "}";
commonui\System\Drawing\Advanced\SizeF.cs (2)
260
return "{Width=" + width.
ToString
(CultureInfo.CurrentCulture) + ", Height=" + height.
ToString
(CultureInfo.CurrentCulture) + "}";
System.Numerics (27)
System\Numerics\Matrix3x2.cs (6)
793
M11.
ToString
(ci), M12.
ToString
(ci),
794
M21.
ToString
(ci), M22.
ToString
(ci),
795
M31.
ToString
(ci), M32.
ToString
(ci));
System\Numerics\Matrix4x4.cs (16)
2194
M11.
ToString
(ci), M12.
ToString
(ci), M13.
ToString
(ci), M14.
ToString
(ci),
2195
M21.
ToString
(ci), M22.
ToString
(ci), M23.
ToString
(ci), M24.
ToString
(ci),
2196
M31.
ToString
(ci), M32.
ToString
(ci), M33.
ToString
(ci), M34.
ToString
(ci),
2197
M41.
ToString
(ci), M42.
ToString
(ci), M43.
ToString
(ci), M44.
ToString
(ci));
System\Numerics\Plane.cs (1)
354
return String.Format(ci, "{{Normal:{0} D:{1}}}", Normal.ToString(), D.
ToString
(ci));
System\Numerics\Quaternion.cs (4)
780
return String.Format(ci, "{{X:{0} Y:{1} Z:{2} W:{3}}}", X.
ToString
(ci), Y.
ToString
(ci), Z.
ToString
(ci), W.
ToString
(ci));
System.Web (1)
UI\WebControls\Unit.cs (1)
370
valuePart = ((float)value).
ToString
(formatProvider);
System.Web.DataVisualization (6)
Common\Converters\CustomAttributesConverters.cs (1)
700
return ((float)value).
ToString
(System.Globalization.CultureInfo.InvariantCulture);
Common\Utilities\ElementPosition.cs (4)
290
this._x.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
291
this._y.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
292
this._width.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
293
this._height.
ToString
(System.Globalization.CultureInfo.CurrentCulture);
WebForm\Converters\MapAreaCoordinatesConverter.cs (1)
94
result += d.
ToString
(System.Globalization.CultureInfo.CurrentCulture) + ",";
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
2890
throw new ArgumentOutOfRangeException("maxRatio", SR.GetString(SR.InvalidLowBoundArgument, "maxRatio", (maxRatio).
ToString
(CultureInfo.CurrentCulture), "0.0"));
winforms\Managed\System\WinForms\DataGridViewColumn.cs (2)
490
throw new ArgumentOutOfRangeException("FillWeight", SR.GetString(SR.InvalidLowBoundArgument, "FillWeight", (value).
ToString
(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture)));
494
throw new ArgumentOutOfRangeException("FillWeight", SR.GetString(SR.InvalidHighBoundArgumentEx, "FillWeight", (value).
ToString
(CultureInfo.CurrentCulture), (ushort.MaxValue).ToString(CultureInfo.CurrentCulture)));
winforms\Managed\System\WinForms\RichTextBox.cs (3)
1598
throw new ArgumentOutOfRangeException("ZoomFactor", SR.GetString(SR.InvalidExBoundArgument, "ZoomFactor", (value).
ToString
(CultureInfo.CurrentCulture), (0.015625f).
ToString
(CultureInfo.CurrentCulture), (64.0f).
ToString
(CultureInfo.CurrentCulture)));
winforms\Managed\System\WinForms\TableLayoutStyle.cs (1)
48
throw new ArgumentOutOfRangeException("Size", SR.GetString(SR.InvalidLowBoundArgumentEx, "Size", value.
ToString
(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture)));
System.Windows.Forms.DataVisualization (5)
Common\Converters\CustomAttributesConverters.cs (1)
700
return ((float)value).
ToString
(System.Globalization.CultureInfo.InvariantCulture);
Common\Utilities\ElementPosition.cs (4)
290
this._x.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
291
this._y.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
292
this._width.
ToString
(System.Globalization.CultureInfo.CurrentCulture)+", "+
293
this._height.
ToString
(System.Globalization.CultureInfo.CurrentCulture);
System.Workflow.Activities (2)
Rules\ArithmeticLiteral.cs (2)
2702
return (v + m_value.
ToString
(CultureInfo.CurrentCulture));
3380
return (v.
ToString
(CultureInfo.CurrentCulture) + m_value);