Constructor FileDictionary
FileDictionary(Stream)
Creates a dictionary based on an inputstream. Using DEFAULT_FIELD_DELIMITER as the field seperator in a line.
NOTE: content is treated as UTF-8
Declaration
public FileDictionary(Stream dictFile)
Parameters
Type | Name | Description |
---|---|---|
Stream | dictFile |
FileDictionary(TextReader)
Creates a dictionary based on a reader. Using DEFAULT_FIELD_DELIMITER as the field seperator in a line.
Declaration
public FileDictionary(TextReader reader)
Parameters
Type | Name | Description |
---|---|---|
TextReader | reader |
FileDictionary(TextReader, String)
Creates a dictionary based on a reader.
Using fieldDelimiter
to seperate out the
fields in a line.
Declaration
public FileDictionary(TextReader reader, string fieldDelimiter)
Parameters
Type | Name | Description |
---|---|---|
TextReader | reader | |
System.String | fieldDelimiter |
FileDictionary(Stream, String)
Creates a dictionary based on an inputstream.
Using fieldDelimiter
to seperate out the
fields in a line.
NOTE: content is treated as UTF-8
Declaration
public FileDictionary(Stream dictFile, string fieldDelimiter)
Parameters
Type | Name | Description |
---|---|---|
Stream | dictFile | |
System.String | fieldDelimiter |