private void button_ob_sh_Click(object sender, EventArgs e)
{
string[] spisok_num_soed = {
"Connection1", "Connection2", "Connection3", "Connection4",
"Connection5", "Connection6", "Connection7", "Connection8",
"Connection9", "Connection10", "Connection11", "Connection12",
"Connection13", "Connection14", "Connection15", "Connection16",
"Connection17", "Connection18", "Connection19", "Connection20" };
var doc = XDocument.Load("DOS.xml");
var lastNode = doc.Root.LastNode as XElement;
var idx = (lastNode == null) ? -1 : Array.BinarySearch(spisok_num_soed, lastNode.Name.LocalName);
XElement xConnections = new XElement(spisok_num_soed[++idx],
new XElement("Element1", comboBox1_el_sh.Text,
new XAttribute("attr1_el1", textBox1.Text)),
new XElement("Relation", comboBox_soed.Text,
new XAttribute("attr1_rel", textBox2.Text)),
new XElement("Element2", comboBox2_el_sh.Text,
new XAttribute("attr1_el2", textBox3.Text)));
doc.Root.Add(xConnections);
doc.Save("DOS.xml");
}
Запись элемента в XML-файл
Есть функция:
Код:
Нажимаю эту кнопку (записываю в файл XML) до "Connection9" включительно. Все в порядке. При следующем клике вместо записи "Connection10" выдает ошибку «Индекс выходит за пределы массива» и var idx = -21.
В чем тут может быть дело?
Спасибо.
P.S. Работаю в Visual C# 2008.
Нашел ошибку!
Цитата: Ner
В чем тут может быть дело?
В семантике возвращения результата функции Array.BinarySearch:
[quote=MSDN]
The index of the specified value in the specified array, if value is found. If value is not found and value is less than one or more elements in array, a negative number which is the bitwise complement of the index of the first element that is larger than value. If value is not found and value is greater than any of the elements in array, a negative number which is the bitwise complement of (the index of the last element plus 1).
[/quote]