Creates a new file, writes a collection of strings to the file, and then closes the file.
| C# | Visual Basic |
public static void WriteAllLines( string path, IEnumerable<string> contents )
Public Shared Sub WriteAllLines ( _ path As String, _ contents As IEnumerable(Of String) _ )
- path (String)
- The file to write to.
- contents (IEnumerable<(Of <(<'String>)>)>)
- The lines to write to the file.
| Exception | Condition |
|---|---|
| ArgumentNullException | path is a null reference (Nothing in Visual Basic) or contents string is empty. |