VB.NET 的InputBox 的C# 等效項
VB.NET 的InputBox,用於顯示使用者輸入的模式彈出窗口,具有C# 對應項。
C#實作
InputBox 的 C# 版本需要新增對 Microsoft.VisualBasic 程式集的參考。新增參考後,您可以從 Microsoft.VisualBasic.Interaction 命名空間存取 InputBox 函數。以下是實現相同功能的C# 程式碼:
using Microsoft.VisualBasic; namespace InputBoxExample { class Program { static void Main(string[] args) { string input = Interaction.InputBox("Enter your name:", "Input Box Example", "John Doe", 100, 100); Console.WriteLine($"User entered: {input}"); } } }
在此範例中:
注意:唯一的強制參數是第一個,這是顯示給螢幕的提示。用戶。
以上是如何建立 VB.NET InputBox 的 C# 等效項?的詳細內容。更多資訊請關注PHP中文網其他相關文章!