111,126
社区成员
发帖
与我相关
我的任务
分享
namespace test2
{
class Program
{
static void Main(string[] args)
{
string str = null;
string str1 = "null";
string str3;
Console.WriteLine("{0},{1},{2}", str, str1,str3="3");
Console.ReadLine();
}
}
}