[求助]谁能给我个关于字符串的例题?要带注释的啊!我先谢了!
谁能给我个关于字符串的例题?要带注释的啊!我先谢了!
2007-07-01 16:18
没看懂

2007-07-01 16:20
2007-07-02 22:43
字符串的问题?
class Test
{
static void Main(string[] args)
{
string s1 = "Hello";
string s2 = "World";
Console.WriteLine(s1 + " " + s2);
}
}
输出结果Hello World 不知道算不算字符串的例题

2007-07-03 04:49