Table of Contents

Method ToString

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

ToString(object)

Converts the value to its equivalent string representation.

string? ToString(object value)

Parameters

value object

A value for convertion.

Returns

string

The string representation of the value.

ToString(object, IFormatProvider?)

Converts the value to its equivalent string representation using the specified culture-specific format information.

string? ToString(object value, IFormatProvider? provider)

Parameters

value object

A value for convertion.

provider IFormatProvider

An object that supplies culture-specific formatting information.

Returns

string

The string representation of the value as specified by provider.

ToString(object, string?)

Converts the value to its equivalent string representation, using the specified format.

string? ToString(object value, string? format)

Parameters

value object

A value for convertion.

format string

A standard or custom format string.

Returns

string

The string representation of the value as specified by format.

ToString(object, string?, IFormatProvider?)

Converts the value to its equivalent string representation using the specified format and culture-specific format information.

string? ToString(object value, string? format, IFormatProvider? provider)

Parameters

value object

A value for convertion.

format string

A standard or custom format string.

provider IFormatProvider

An object that supplies culture-specific formatting information.

Returns

string

The string representation of the value as specified by format and provider.