Click or drag to resize
FileReadAllLines Method (String, Encoding)
Opens a file, reads all lines of the file with the specified encoding, and then closes the file.

Namespace: Alphaleonis.Win32.Filesystem
Assembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static string[] ReadAllLines(
	string path,
	Encoding encoding
)

Parameters

path
Type: SystemString
The file to open for reading.
encoding
Type: System.TextEncoding
The Encoding applied to the contents of the file.

Return Value

Type: String
All lines of the file.
See Also