Beispiel #1
0
 public void ReadFrom(Stream is1)
 {
     try
     {
         this.SingleXMLCells = SingleXmlCellsDocument.Parse(is1).GetSingleXmlCells();
     }
     catch (XmlException ex)
     {
         throw new IOException(ex.Message);
     }
 }
Beispiel #2
0
 public void ReadFrom(Stream is1)
 {
     try
     {
         SingleXmlCellsDocument doc = SingleXmlCellsDocument.Parse(is1);
         SingleXMLCells = doc.GetSingleXmlCells();
     }
     catch (XmlException e)
     {
         throw new IOException(e.Message);
     }
 }