[]
Converts the value of this instance to its equivalent string representation.
public override string ToString()
| Type | Description |
|---|---|
| string |
var length = new Length("1in");
string result = length.ToString(); // "1in"
Converts the value of this instance to its equivalent string representation using the specified format.
public string ToString(IFormatProvider provider)
| Type | Name | Description |
|---|---|---|
| IFormatProvider | provider | An IFormatProvider object supplying the culture-specific formatting information. |
| Type | Description |
|---|---|
| string |
var length = new Length("1in");
string result = length.ToString(CultureInfo.InvariantCulture); // "1in"