我是 C# 新手。我一直在尝试将输入到文本框中的值,在 Windows 窗体上,然后将它们保存在数组中。如果输入数据大于名称的大小,我试图然后显示一条消息。
例如,一个人在文本框中输入他们的名字。该数组的大小可能为[20]
. 因此,如果名称超过 20 个字符,则会显示警告。
我有这个工作但没有使用数组来检查输入。
string[] name = new string[20];
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length <= 0)
{
MessageBox.Show("empty");
}
else if (textBox1.Text.Length > 20)
{
MessageBox.Show("Too many letters");
}
else
{
}
}