Exemplo n.º 1
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (this.parser != null)
         {
             this.parser.Dispose();
             this.parser = null;
         }
     }
 }
Exemplo n.º 2
0
 public SpssDataReader(Stream spssFileStream)
 {
     this.parser = new FileParser.SavFileParser(spssFileStream);
 }
Exemplo n.º 3
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (this.parser != null)
         {
             this.parser.Dispose();
             this.parser = null;
         }
     }
 }
Exemplo n.º 4
0
 public SpssDataReader(FileParser.SavFileParser parser)
 {
     this.parser = parser;
 }
Exemplo n.º 5
0
 public SpssDataReader(Stream spssFileStream)
 {
     this.parser = new FileParser.SavFileParser(spssFileStream);
 }
Exemplo n.º 6
0
 public SpssDataReader(FileParser.SavFileParser parser)
 {
     this.parser = parser;
 }