UInt24.ToString Method
Overloads
| Name | Description |
|---|---|
| ToString() | Returns a string that represents the current object. |
| ToString(String, IFormatProvider) | Formats the value of the current instance using the specified format. |
ToString()
Returns a string that represents the current object.
public override string ToString();
Returns
A string that represents the current object.
ToString(String, IFormatProvider)
Formats the value of the current instance using the specified format.
public new string ToString(string? format, IFormatProvider? formatProvider);
Parameters
| Name | Type | Description |
|---|---|---|
| format | String | The format to use. -or- A null reference (Nothing in Visual Basic) to use the default format defined for the type of the IFormattable implementation. |
| formatProvider | IFormatProvider | The provider to use to format the value. -or- A null reference (Nothing in Visual Basic) to obtain the numeric format information from the current locale setting of the operating system. |
Returns
The value of the current instance in the specified format.