Exemple #1
0
 public TextFileReaderFields()
 {
     TextFileType   = FileType.Delimited;
     Delimiter      = DelimiterType.Comma;
     TextQualifier  = TextQualifierType.None;
     OtherDelimiter = "";
     FieldList      = new AfieldCollection();
 }
Exemple #2
0
        public object Clone()
        {
            var clonedAfieldCollection = new AfieldCollection();

            foreach (Afield afield in this)
            {
                clonedAfieldCollection.Add((Afield)afield.Clone());
            }
            return(clonedAfieldCollection);
        }