Appends content to a file.
Namespace: Composite.Core.IOAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
C# |
---|
public static void AppendAllLines( string path, IEnumerable<string> contents, Encoding encoding ) |
Visual Basic |
---|
Public Shared Sub AppendAllLines ( _ path As String, _ contents As IEnumerable(Of String), _ encoding As Encoding _ ) |
Visual C++ |
---|
public: static void AppendAllLines( String^ path, IEnumerable<String^>^ contents, Encoding^ encoding ) |
Parameters
- path
- Type: System..::..String
Path to file to append to.
- contents
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
Content to append to file.
- encoding
- Type: System.Text..::..Encoding
Encoding to use when appending.