AODL.Document.Import.PlainText.CsvImporter.CsvImporter C# (CSharp) Метод

CsvImporter() публичный Метод

Initializes a new instance of the CsvImporter class.
public CsvImporter ( ) : System
Результат System
		public CsvImporter()
		{
			this.m_dirInfo = new DirInfo(string.Empty, string.Empty);
			this._importError					= new ArrayList();
			
			this._supportedExtensions			= new ArrayList();
			this._supportedExtensions.Add(new DocumentSupportInfo(".csv", DocumentTypes.SpreadsheetDocument));

			this._author						= "Lars Behrmann, [email protected]";
			this._infoUrl						= "http://AODL.OpenDocument4all.com";
			this._description					= "This the standard importer for comma seperated text files of the OpenDocument library AODL.";
		}