2012年3月21日

C# msgbox 換行

VB裡面msgbox的換行是使用 vbNewLine
C#則要用
" Environment.NewLine "
範例程式:
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("這是第一行"+Environment.NewLine +"這是第二行");
}

沒有留言:

張貼留言