基本上在表单加载时,我想要一个基本的 VB 输入框来提示用户以字符串的形式输入(服务器名称,如 MYSERVER01)。截至目前,我正在完成:
//Get server name from user
string serverName = Microsoft.VisualBasic.Interaction.InputBox("Enter the name of the server hosting the share (without '\\\\')", "File copy from Server", "", -1, -1);
string remotePath = @"\\" + serverName + @"\" + "Share";
但是,我需要remotePath
在整个项目中都可用,我的问题是,我在哪里定义它,记住我只希望消息框提示用户一次输入服务器名称。