Half.ToString Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| ToString() | Converts the numeric value of this instance to its equivalent string representation. | 
| ToString(IFormatProvider) | Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. | 
| ToString(String) | Converts the numeric value of this instance to its equivalent string representation, using the specified format. | 
| ToString(String, IFormatProvider) | Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. | 
ToString()
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Converts the numeric value of this instance to its equivalent string representation.
public:
 override System::String ^ ToString();public override string ToString();override this.ToString : unit -> stringPublic Overrides Function ToString () As StringReturns
The string representation of the value of this instance.
Applies to
ToString(IFormatProvider)
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.
public:
 System::String ^ ToString(IFormatProvider ^ provider);public string ToString(IFormatProvider? provider);override this.ToString : IFormatProvider -> stringPublic Function ToString (provider As IFormatProvider) As StringParameters
- provider
- IFormatProvider
An object that supplies culture-specific formatting information.
Returns
The string representation of the value of this instance as specified by provider.
Applies to
ToString(String)
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Converts the numeric value of this instance to its equivalent string representation, using the specified format.
public:
 System::String ^ ToString(System::String ^ format);public string ToString(string? format);override this.ToString : string -> stringPublic Function ToString (format As String) As StringParameters
- format
- String
A numeric format string.
Returns
The string representation of the value of this instance as specified by format.
Exceptions
format is invalid.
See also
Applies to
ToString(String, IFormatProvider)
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.
public:
 virtual System::String ^ ToString(System::String ^ format, IFormatProvider ^ provider);public string ToString(string? format, IFormatProvider? provider);override this.ToString : string * IFormatProvider -> stringPublic Function ToString (format As String, provider As IFormatProvider) As StringParameters
- format
- String
A numeric format string.
- provider
- IFormatProvider
An object that supplies culture-specific formatting information.
Returns
The string representation of the value of this instance as specified by provider.