在C#中獲取字符串的方法有很多種,可以使用字符串字面值、字符串變量、字符串連接、字符串格式化等。下面是一些常用的方法:
string str = "Hello, World!";
string str1 = "Hello";
string str2 = "World";
string str = str1 + ", " + str2 + "!";
string str1 = "Hello";
string str2 = "World";
string str = string.Concat(str1, ", ", str2, "!");
string str = string.Format("Hello, {0}!", "World");
Console.WriteLine("請輸入字符串:");
string str = Console.ReadLine();
這些是一些獲取字符串的基本方法,具體使用哪種方法取決于具體的情況和需求。