Main() 方法是入口點-
static void Main(string[] args)
參數陣列args用於設定參數-
string[] args)
如果新增兩個參數,它將設定以下內容-
var args = new string[] {"arg1","arg2”}
這裡是演示程式碼-
using System; namespace Demo { class HelloWorld { // args for command line static void Main(string[] args) { Console.WriteLine("Welcome here!"); Console.ReadKey(); } } }
使用命令列而不是Visual Studio IDE 編譯C# 程式-
開啟文字編輯器並新增上述程式碼.
將檔案另存為helloworld.cs
#開啟命令提示符工具並轉到保存檔案的目錄檔案。
輸入 csc helloworld.cs 並按 Enter 編譯您的程式碼。
如果您的程式碼中沒有錯誤程式碼後,命令提示字元會將您帶到下一行並產生 helloworld.exe 執行檔。
鍵入 helloworld 來執行您的程式。
您可以看到輸出 Hello World 印在螢幕上。
以上是C# 的 main 方法中如何傳遞命令列參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!