Ejemplo n.º 1
0
 public DmTable()
 {
     this.nextRowID     = 1;
     this.rows          = new DmRowCollection(this);
     this.columns       = new DmColumnCollection(this);
     this.Culture       = CultureInfo.CurrentCulture;
     this.CaseSensitive = true;
 }
Ejemplo n.º 2
0
 public DmTable()
 {
     this.nextRowID     = 1;
     this.rows          = new DmRowCollection(this);
     this.columns       = new DmColumnCollection(this);
     this.Culture       = CultureInfo.CurrentCulture;
     this.CaseSensitive = false;
     this.compareFlags  = CompareOptions.IgnoreCase | CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth;
 }