String.ToString メソッド ()
アセンブリ: mscorlib (mscorlib.dll 内)

Dim instance As String Dim returnValue As String returnValue = instance.ToString
この String。

Imports System _ Class stringToString Public Shared Sub Main() Dim str1 As [String] = "123" Dim str2 As [String] = "abc" Console.WriteLine("Original str1: {0}", str1) Console.WriteLine("Original str2: {0}", str2) Console.WriteLine("str1 same as str2?: {0}", [Object].ReferenceEquals(str1, str2)) str2 = str1.ToString() Console.WriteLine() Console.WriteLine("New str2: {0}", str2) Console.WriteLine("str1 same as str2?: {0}", [Object].ReferenceEquals(str1, str2)) End Sub 'Main End Class 'Sample ' 'This code produces the following output: 'Original str1: 123 'Original str2: abc 'str1 same as str2?: False ' 'New str2: 123 'str1 same as str2?: True '
using System; class stringToString { public static void Main() { String str1 = "123"; String str2 = "abc"; Console.WriteLine("Original str1: {0}", str1); Console.WriteLine("Original str2: {0}", str2); Console.WriteLine("str1 same as str2?: {0}", Object.ReferenceEquals(str1, str2)); str2 = str1.ToString(); Console.WriteLine(); Console.WriteLine("New str2: {0}", str2); Console.WriteLine("str1 same as str2?: {0}", Object.ReferenceEquals(str1, str2)); } } /* This code produces the following output: Original str1: 123 Original str2: abc str1 same as str2?: False New str2: 123 str1 same as str2?: True */
using namespace System; int main() { String^ str1 = "123"; String^ str2 = "abc"; Console::WriteLine( "Original str1: {0}", str1 ); Console::WriteLine( "Original str2: {0}", str2 ); Console::WriteLine( "str1 same as str2?: {0}", Object::ReferenceEquals( str1, str2 ) ); str2 = str1; Console::WriteLine(); Console::WriteLine( "New str2: {0}", str2 ); Console::WriteLine( "str1 same as str2?: {0}", Object::ReferenceEquals( str1, str2 ) ); } /* This code produces the following output: Original str1: 123 Original str2: abc str1 same as str2?: False New str2: 123 str1 same as str2?: True */
import System.*; class StringToString { public static void main(String[] args) { String str1 = "123"; String str2 = "abc"; Console.WriteLine("Original str1: {0}", str1); Console.WriteLine("Original str2: {0}", str2); Console.WriteLine("str1 same as str2?: {0}", (System.Boolean)Object.ReferenceEquals(str1, str2)); str2 = str1.ToString(); Console.WriteLine(); Console.WriteLine("New str2: {0}", str2); Console.WriteLine("str1 same as str2?: {0}", (System.Boolean)Object.ReferenceEquals(str1, str2)); } //main } //StringToString /* This code produces the following output: Original str1: 123 Original str2: abc str1 same as str2?: False New str2: 123 str1 same as str2?: True */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


String.ToString メソッド (IFormatProvider)
アセンブリ: mscorlib (mscorlib.dll 内)

Dim instance As String Dim provider As IFormatProvider Dim returnValue As String returnValue = instance.ToString(provider)
戻り値
この String。


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


String.ToString メソッド
Weblioに収録されているすべての辞書からString.ToStringを検索する場合は、下記のリンクをクリックしてください。

- String.ToStringのページへのリンク