Method LoadFile
LoadFile(string)
When implemented by a class, loads the contents of the specified file.
bool LoadFile(string fileName)
Parameters
fileNamestringName of file to load text.
Returns
- bool
True is succeed; otherwise false.
LoadFile(string, Encoding)
When implemented by a class, loads the contents of the specified file with specified encoding.
bool LoadFile(string fileName, Encoding encoding)
Parameters
fileNamestringName of file to load text.
encodingEncodingSpecifies the character encoding to use.
Returns
- bool
True is succeed; otherwise false.