Click or drag to resize

FileGetCsvLine Method

Returns the next value of the file in 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 is interpreted as being UTF-8 encoded.

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

Parameters

delim (Optional)
Type: SystemString

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

Return Value

Type: String

[Missing <returns> documentation for "M:Godot.File.GetCsvLine(System.String)"]

See Also