.NET 控制台應用程式中的退出程式碼規格
在.NET 主機應用程式中,設定退出程式碼對於將執行狀態傳達給外部系統或流程。以下是指定退出代碼的三種方法:
1。 Main 方法傳回值
宣告 Main 方法傳回 int 並從中傳回退出程式碼:
class Program { static int Main() { // ... return exitCode; // Set the exit code } }
2. Environment.Exit()
您可以在應用程式中隨時呼叫Environment.Exit(code)來設定退出代碼:
class Program { static void Main() { // ... Environment.Exit(exitCode); // Set the exit code } }
3. Environment.ExitCode屬性
直接透過Environment.ExitCode屬性指定退出代碼:
class Program { static void Main() { // ... Environment.ExitCode = exitCode; // Set the exit code } }
使用注意事項
首選方法取決於您的應用程式的上下文:
以上是如何在 .NET 控制台應用程式中指定退出代碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!