AODL.Document.Import.PlainText.PlainTextImporter.PlainTextImporter C# (CSharp) Method

PlainTextImporter() public method

Initializes a new instance of the PlainTextImporter class.
public PlainTextImporter ( ) : System
return System
		public PlainTextImporter()
		{
			this.m_dirInfo = new DirInfo(string.Empty, string.Empty);
			this._importError					= new ArrayList();
			
			this._supportedExtensions			= new ArrayList();
			this._supportedExtensions.Add(new DocumentSupportInfo(".txt", DocumentTypes.TextDocument));

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