И что делать, если у меня в другом потоке в 5-10 объектам должен обращаться.
foreach (var tmp in dt.OrderBy(c => c.Value.Date).OrderBy(c => c.Value.Version))
{
listBox2.Items.Add(string.Format("{0} _ {1} _ {2}", tmp.Key, tmp.Value.Version, tmp.Value.Date));
}
INI ini = new INI("Путь_к_файлу");
ini.IniWriteValue("Test_block","Key","Value");
string value = ini.IniReadValue("Test_block","Key");
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
label1.Text = e.KeyChar.ToString();
}
private void Form1_KeyUp(object sender, KeyEventArgs e)
{
label1.Text = e.KeyData.ToString();
}