Click or drag to resize

FileCsvDocumentSave Method (String, Encoding)

Writes the document to a file on disk using the specified encoding.

Namespace:  Rhino.FileIO
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public void Save(
	string path,
	Encoding encoding
)

Parameters

path
Type: SystemString
The path of the file to write.
encoding
Type: System.TextEncoding
The character encoding to use, for example ASCII or UTF8. Note that UTF8 emits a byte order mark; use new UTF8Encoding(false) to write UTF-8 without one.
See Also