public DmTable() { this.nextRowID = 1; this.rows = new DmRowCollection(this); this.columns = new DmColumnCollection(this); this.Culture = CultureInfo.CurrentCulture; this.CaseSensitive = true; }
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; }