Прочетете на английски Редактиране

Споделяне чрез


UIntPtr.ToString Method

Definition

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 format and 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)

Formats the value of the current instance using the specified format.

ToString()

Source:
UIntPtr.cs
Source:
UIntPtr.cs
Source:
UIntPtr.cs

Converts the numeric value of this instance to its equivalent string representation.

C#
public override string ToString();

Returns

The string representation of the value of this instance.

Remarks

If the value of the Size property for this instance is 4, then this method is equivalent to ToString; otherwise, this method is equivalent to ToString.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

ToString(IFormatProvider)

Source:
UIntPtr.cs
Source:
UIntPtr.cs
Source:
UIntPtr.cs

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

C#
public string ToString(IFormatProvider? provider);

Parameters

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

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10

ToString(String)

Source:
UIntPtr.cs
Source:
UIntPtr.cs
Source:
UIntPtr.cs

Converts the numeric value of this instance to its equivalent string representation, using the specified format.

C#
public string ToString(string? format);

Parameters

format
String

A standard or custom numeric format string.

Returns

The string representation of the value of this instance as specified by format.

Exceptions

format is invalid or not supported.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10

ToString(String, IFormatProvider)

Source:
UIntPtr.cs
Source:
UIntPtr.cs
Source:
UIntPtr.cs

Formats the value of the current instance using the specified format.

C#
public string ToString(string? format, IFormatProvider? provider);

Parameters

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.

provider
IFormatProvider

An object that supplies culture-specific formatting information.

Returns

The value of the current instance in the specified format.

Implements

Exceptions

format is invalid or not supported.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10