我有一个文本框。当我将文件拖入其中并单击按钮时,文本框中的文件将移动到另一个文件夹。但是,如果我忘记将文件拖到文本框并单击按钮,程序会抛出一个不存在 sourceFileName 的参数异常。
private void button_Click(object sender, EventArgs e)
{
// here occurs Argument Exception Because there isn't any TextBox.Text
File.Copy(TextBox.Text, "C:/");
if (String.IsNullOrEmpty(TextBox.Text))
{
MessageBox.Show("Please drag a file to the Tex Box!");
}
}
如何捕获缺少源文件的参数异常?