File.WriteAllLines Method
.NET Framework 4.5
Creates a new file, writes one or more strings to the file, and then closes the file.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
WriteAllLines(String, IEnumerable<String>) | Creates a new file, writes a collection of strings to the file, and then closes the file. |
|
WriteAllLines(String, String[]) | Creates a new file, write the specified string array to the file, and then closes the file. |
|
WriteAllLines(String, IEnumerable<String>, Encoding) | Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file. |
|
WriteAllLines(String, String[], Encoding) | Creates a new file, writes the specified string array to the file by using the specified encoding, and then closes the file. |