常用的2種方法:
方法1
在Main()函數剛開始,加入如下代碼:
1 static int Main(string[] args)
2 {
3
4 Console.In.ReadLine();
5
6 ...
7
8 }
這樣能讓程序在此停住,等待輸入。此時便可以在VS中attach上該程序,開始debug。
此方法在需要debug各種參數時比較方便。
方法2
直接在VS中打開project properties,在debug->Command line arguments中輸入你的命令行參數。然後直接F5。
此方法因為每次對不同參數,需要去改project properties,所以在參數固定時,比較常用。
摘自 breakout