15 references to ToString
Microsoft.CodeAnalysis.CSharp (1)
SymbolDisplay\ObjectDisplay.cs (1)
475sb.Append(value.ToString("x16"));
Microsoft.CodeAnalysis.VisualBasic (1)
SymbolDisplay\ObjectDisplay.vb (1)
294sb.Append(value.ToString("X16"))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeCleanup\Providers\ReduceTokensCodeCleanupProvider.vb (1)
281Return "&H" + ConvertToULong(value).ToString("X")
Microsoft.Diagnostics.DataContractReader.Contracts (2)
PrintfStressMessageFormatter.cs (2)
83builder.Append(ptr.Value.ToString($"X{_target.PointerSize * 2}")); 139ReadOnlySpan<char> value = ptr.Value.ToString(format);
Microsoft.DotNet.Build.Tasks.Installers (8)
src\CpioWriter.cs (8)
25writer.Write(entry.Inode.ToString("x8")); 27writer.Write(entry.OwnerID.ToString("x8")); 28writer.Write(entry.GroupID.ToString("x8")); 30writer.Write(entry.Timestamp.ToString("x8")); 32writer.Write(entry.DevMajor.ToString("x8")); 33writer.Write(entry.DevMinor.ToString("x8")); 34writer.Write(entry.RDevMajor.ToString("x8")); 35writer.Write(entry.RDevMinor.ToString("x8"));
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Conversion.vb (1)
279Return Number.ToString("X")
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
225public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string? format) => ((nuint_t)_value).ToString(format);