Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
33 references to ToString
mscorlib (4)
system\convert.cs (2)
1855return value.ToString(CultureInfo.CurrentCulture); 1860return value.ToString(provider);
system\text\stringbuilder.cs (2)
940return Append(value.ToString(CultureInfo.CurrentCulture)); 1092return Insert(index, value.ToString(CultureInfo.CurrentCulture), 1);
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\Generated\Int16Animation.cs (2)
331defaultOriginValue.ToString(CultureInfo.InvariantCulture))); 342defaultDestinationValue.ToString(CultureInfo.InvariantCulture)));
PresentationFramework (1)
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (1)
4042sb.Append(sc.ToString(CultureInfo.InvariantCulture));
System (11)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1235Output.Write(((Int16)e.Value).ToString(CultureInfo.InvariantCulture));
compmod\microsoft\win32\NativeMethods.cs (6)
1521+ wDay.ToString(CultureInfo.CurrentCulture) + "/" + wMonth.ToString(CultureInfo.CurrentCulture) + "/" + wYear.ToString(CultureInfo.CurrentCulture) 1522+ " " + wHour.ToString(CultureInfo.CurrentCulture) + ":" + wMinute.ToString(CultureInfo.CurrentCulture) + ":" + wSecond.ToString(CultureInfo.CurrentCulture)
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1512Output.Write(((Int16)e.Value).ToString(CultureInfo.InvariantCulture));
net\System\Net\_SSPIWrapper.cs (2)
978+ " Version:" + Version.ToString(NumberFormatInfo.InvariantInfo) 979+ " RPCID:" + RPCID.ToString(NumberFormatInfo.InvariantInfo)
services\monitoring\system\diagnosticts\EventLogEntry.cs (1)
151category = "(" + CategoryNumber.ToString(CultureInfo.CurrentCulture) + ")";
System.Data (2)
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
109return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
527return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));
System.Data.Services (1)
System\Data\Services\Serializers\JsonWriter.cs (1)
202this.WriteCore(value.ToString(CultureInfo.InvariantCulture), /* quotes */ false);
System.Drawing (2)
commonui\System\Drawing\Printing\PrinterSettings.cs (2)
101"value", value.ToString(CultureInfo.CurrentCulture), 1385+ " Copies=" + Copies.ToString(CultureInfo.InvariantCulture)
System.Windows.Forms (8)
winforms\Managed\System\WinForms\AxHost.cs (1)
6268value.ToString(CultureInfo.InvariantCulture));
winforms\Managed\System\WinForms\NativeMethods.cs (6)
4001+ wDay.ToString(CultureInfo.InvariantCulture) +"/" + wMonth.ToString(CultureInfo.InvariantCulture) + "/" + wYear.ToString(CultureInfo.InvariantCulture) 4002+ " " + wHour.ToString(CultureInfo.InvariantCulture) + ":" + wMinute.ToString(CultureInfo.InvariantCulture) + ":" + wSecond.ToString(CultureInfo.InvariantCulture)
winforms\Managed\System\WinForms\TreeView.cs (1)
809throw new ArgumentOutOfRangeException("ItemHeight", SR.GetString(SR.InvalidHighBoundArgument, "ItemHeight", (value).ToString(CultureInfo.CurrentCulture), Int16.MaxValue.ToString(CultureInfo.CurrentCulture)));
System.Workflow.Runtime (2)
Hosting\DefaultWorkflowTransactionService.cs (1)
114WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "DefaultWorkflowCommitWorkBatchService retrying commitWorkBatchCallback (retry attempt " + retryCounter.ToString(System.Globalization.CultureInfo.InvariantCulture) + ")");
Hosting\SharedConnectionWorkflowTransactionService.cs (1)
226WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "SharedConnectionWorkflowCommitWorkBatchService retrying commitWorkBatchCallback (retry attempt " + retryCounter.ToString(System.Globalization.CultureInfo.InvariantCulture) + ")");