0

私はラベルとこのコードを持っています:

            string User = Environment.UserName;
        toolStripStatusLabel1.Text = "This Software is Licensed to:" + User;

何らかの理由で、出力は次のようになります。

This Software is Licensed to:UserName
4

2 に答える 2

3

非常に簡単な修正:

string User = Environment.UserName;
toolStripStatusLabel1.Text = "This Software is Licensed to: " + User;
// Add a space after 'to:'

お役に立てれば!

于 2012-06-30T02:36:19.573 に答える
1

「:」の後にスペースを挿入してみてください

于 2012-06-30T02:41:26.920 に答える