IntPtr.ToString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將目前 IntPtr 物件的數值,轉換為其相等的字串表示。
多載
ToString() |
將目前 IntPtr 物件的數值,轉換為其相等的字串表示。 |
ToString(IFormatProvider) |
使用指定的格式和特定文化特性格式資訊,將這個執行個體的數值轉換成它的相等字串表示。 |
ToString(String) |
將目前 IntPtr 物件的數值,轉換為其相等的字串表示。 |
ToString(String, IFormatProvider) |
使用指定的格式,格式化目前執行個體的值。 |
ToString()
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
將目前 IntPtr 物件的數值,轉換為其相等的字串表示。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
傳回
這個執行個體值的字串表示。
備註
如果這個實例的 Size 屬性值為 4,則這個方法相當於 Int32.ToString ,否則這個方法相當於 Int64.ToString 。
適用於
ToString(IFormatProvider)
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
使用指定的格式和特定文化特性格式資訊,將這個執行個體的數值轉換成它的相等字串表示。
public:
System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider? provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String
參數
- provider
- IFormatProvider
物件,提供特定文化特性格式資訊。
傳回
這個執行個體值的字串表示,如同 provider
所指定。
適用於
ToString(String)
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
將目前 IntPtr 物件的數值,轉換為其相等的字串表示。
public:
System::String ^ ToString(System::String ^ format);
public string ToString (string format);
public string ToString (string? format);
override this.ToString : string -> string
Public Function ToString (format As String) As String
參數
傳回
目前 IntPtr 物件值的字串表示。
例外狀況
format
無效或不受支援。
備註
format
如果 參數為 null
或空字串 (「」) ,則傳回值會以一般格式標準格式化 (「G」) 。 如需數值格式規範的詳細資訊,請參閱 標準數值格式字串 主題。
傳回值會使用不因文化特性而異而格式化。
另請參閱
適用於
ToString(String, IFormatProvider)
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
- 來源:
- IntPtr.cs
使用指定的格式,格式化目前執行個體的值。
public:
virtual System::String ^ ToString(System::String ^ format, IFormatProvider ^ provider);
public string ToString (string? format, IFormatProvider? provider);
override this.ToString : string * IFormatProvider -> string
Public Function ToString (format As String, provider As IFormatProvider) As String
參數
- format
- String
要使用的格式。
-或- null
Visual Basic) 中的參考 (Nothing
,以使用為實作類型 IFormattable 定義的預設格式。
- provider
- IFormatProvider
物件,提供特定文化特性格式資訊。
傳回
採用指定格式之目前執行個體的值。