コード例 #1
0
 /// <summary>
 /// Writes the specified columns to the end of the currently Open()'ed file
 /// </summary>
 /// <param name="columns"></param>
 /// <returns>A task that will complete on completion of the underlying I/O operation</returns>
 public async Task WriteAsync(params string[] columns)
 {
     await _writer.WriteAsync(columns);
 }