public void printCurrentXMLFileContent(string fileName)
        {
            XMLProcessing         xml     = new XMLProcessing();
            List <ListDictionary> debtors = xml.readXMLFile(fileName);

            lv_debtors.Items.Clear();

            foreach (var item in debtors)
            {
                foreach (DictionaryEntry de in item)
                {
                    lv_debtors.Items.Add(de.Key + " " + de.Value);
                }
            }
        }
示例#2
0
 public virtual void AddHeader(int line, XMLProcessing xp)
 {
 }