Пример #1
0
 public void GetFieldsInfoToFile(string FileNameDestinazione)
 {
     if (_reader != null)
     {
         _fileNameDestinazione = FileNameDestinazione;
         HashMap _s = _form.getFields();
         System.Collections.Hashtable _arr = EstraiFields(_s);
         CreateFileWithFields(_arr, _fileNameDestinazione);
     }
     else
     {
         throw new FieldAccessException();
     }
 }