在windows form中如果要輸出內容到輸出視窗
可以用console.write/writeline的方式輸出訊息
但是console這個物件不能用在web專案裡
在Web專案裡要用以下的方法
System.Diagnostics.Debug.WriteLine("Hello World")
才能在debug的輸出畫面出現
可以用console.write/writeline的方式輸出訊息
但是console這個物件不能用在web專案裡
在Web專案裡要用以下的方法
System.Diagnostics.Debug.WriteLine("Hello World")
才能在debug的輸出畫面出現
留言