Пример #1
0
 public void Process(OnCellData ondata)
 {
     OnData = ondata;                                                                                        // This is the callback that will receive the data
     Stream inStream = sheet.GetStream();                                                                    // This is the data stream
     using (XmlReader reader = XmlReader.Create(inStream))                                                   // We will read the stream as XML
     LoopSheet(reader);                                                                                      // So lets do it
 }
Пример #2
0
        public void Process(OnCellData ondata)
        {
            OnData = ondata;                                                                                        // This is the callback that will receive the data
            Stream inStream = sheet.GetStream();                                                                    // This is the data stream

            using (XmlReader reader = XmlReader.Create(inStream))                                                   // We will read the stream as XML
                LoopSheet(reader);                                                                                  // So lets do it
        }