标签: c# winforms
string1 = "hello"; string2 = "world";
为什么会这样?
string.Format("{0}\t{1}",string1,string2);
没有注册水平标签?它显示为helloworld而不是hello world。
helloworld
hello world
我这样做是否正确?