Справочник функций

Ваш аккаунт

Войти через: 
Забыли пароль?
Регистрация
Информацию о новых материалах можно получать и без регистрации:

Почтовая рассылка

Подписчиков: -1
Последний выпуск: 19.06.2015

Запись элемента в XML-файл

6.0K
13 октября 2011 года
Ner
31 / / 23.11.2010
Привет!


Есть функция:

Код:
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) до "Connection9" включительно. Все в порядке. При следующем клике вместо записи "Connection10" выдает ошибку «Индекс выходит за пределы массива» и var idx = -21.
В чем тут может быть дело?
Спасибо.

P.S. Работаю в Visual C# 2008.
6.0K
14 октября 2011 года
Ner
31 / / 23.11.2010
Нашел ошибку!
5
14 октября 2011 года
hardcase
4.5K / / 09.08.2005
Цитата: 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]

Реклама на сайте | Обмен ссылками | Ссылки | Экспорт (RSS) | Контакты
Добавить статью | Добавить исходник | Добавить хостинг-провайдера | Добавить сайт в каталог