Пример #1
0
 public CsvField(string name, Type type, bool isIndexed, NormalizeColumnDataMethod normalizeMethod) : this(name, type)
 {
     this.isIndexed       = isIndexed;
     this.normalizeMethod = normalizeMethod;
 }
Пример #2
0
 public CsvField(string name, Type type, bool isIndexed, Version buildAdded, NormalizeColumnDataMethod normalizeMethod) : this(name, type, isIndexed, normalizeMethod)
 {
     this.buildAdded = buildAdded;
 }
Пример #3
0
        public CsvField(string name, Type type, bool isIndexed, Version buildAdded, NormalizeColumnDataMethod normalizeMethod)
        {
            NormalizeColumnDataMethod normalizeMethod2 = (string c) => normalizeMethod(c);

            this.csvFieldImpl = new CsvField(name, type, isIndexed, buildAdded, normalizeMethod2);
        }