Click or drag to resize

FileStoreCsvLine Method

Store the given String in the file as a line formatted in the CSV (Comma-Separated Values) format. You can pass a different delimiter delim to use other than the default "," (comma). This delimiter must be one-character long.

Text will be encoded as UTF-8.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public void StoreCsvLine(
	string[] values,
	string delim = ","
)

Parameters

values
Type: SystemString

[Missing <param name="values"/> documentation for "M:Godot.File.StoreCsvLine(System.String[],System.String)"]

delim (Optional)
Type: SystemString

[Missing <param name="delim"/> documentation for "M:Godot.File.StoreCsvLine(System.String[],System.String)"]

See Also