在哈希表或数组中保存信息然后输出

时间:2015-06-02 11:54:46

标签: c# checkbox hashtable

我正在开发一个程序,我不知道如何处理这个问题。

在我的程序中,我有大量的复选框(是和否),当选择否时,会出现一个文本框,提示用户编写评论,例如:

private void checkBox48_CheckedChanged(object sender, EventArgs e)
  {
      if (checkBox48.Checked == true)
      {
          // Create an instance of the dialog
          frmInputBox input = new frmInputBox();
          // Show the dialog modally, testing the result.
          // If the user cancelled, skip past this block.
          if (input.ShowDialog() == DialogResult.OK)
          {
              // The user clicked OK or pressed Return Key
              // so display their input in this form.

              problems = problems + "23. Check Outlet Drainage : " + input.txtInput.Text + Environment.NewLine;
              this.txtProblems5.Text = problems;
              txtProblems5.Visible = true;
          }

          // Check to see if the dialog is still hanging around
          // and, if so, get rid of it.
          if (input != null)
          {
              input.Dispose();
          }
      }
  }

但是,暂时我的用户输入只是写入名为String的{​​{1}}。我想将这些值中的每一个保存在不同的位置。

散列表或数组是否合适? (例如problems

2 个答案:

答案 0 :(得分:2)

数组或散列表都可以。 Hashtable可能对开发人员更友好,并且可能带来更小的内存占用。这是一个小例子:

private Dictionary<int, string> problems = new Dictionary<int, string>;

// add key value pair
problems.Add(42, "your problem here");

// get value
string value = "";
if (problems.TryGetValue(42", out value))
{
    // the key was present and the value is now set
}
else
{
    // key wasn't found
}

答案 1 :(得分:1)

如果使用数组,则表示您必须根据示例为每个文本框创建条目。

出于偏好,我可能会使用textbox,其中键是控件名称 然后,我的txtProblem1.text = dictionary.ContainsKey(txtProblem1.Name) ? dictionary[txtProblem1.Name] : ""; 值可以是:

mov eax, [rsi+0x0C]