Implemented interface member:
method
ToString
System.IFormattable.ToString(System.String, System.IFormatProvider)
9 references to ToString
mscorlib (5)
system\enum.cs (3)
82return result.ToString("X4", null); 89return result.ToString("X4", null); 96return result.ToString("X4", null);
system\text\gb18030encoding.cs (2)
232"[GB18030Encoding.LoadManagedCodePage] Expected 0x99FB to be last 4 byte offset, found 0x" + count4Byte.ToString("X4", CultureInfo.InvariantCulture)); 380"[GB18030Encoding.GetBytes]Expected iBytes < 0x7e, not 0x" + iBytes.ToString("X2", CultureInfo.InvariantCulture));
System (1)
compmod\system\componentmodel\UInt16Converter.cs (1)
61return ((UInt16)value).ToString("G", formatInfo);
System.Data (1)
fx\src\data\System\Data\DataException.cs (1)
1263string xchar = "0x" + ((UInt16)charValue).ToString("X", CultureInfo.InvariantCulture);
System.Web (1)
Routing\ParsedRoute.cs (1)
335return "%" + Convert.ToUInt16(m.Value[0]).ToString("x2", CultureInfo.InvariantCulture);
System.Xml (1)
System\Xml\XmlConvert.cs (1)
695return value.ToString(null, NumberFormatInfo.InvariantInfo);