Function File.storeCsvLine

Store the given PoolStringArray 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.

void storeCsvLine (
  const(PoolArray!(godot.core.string.String)) values,
  const(String) delim = GodotStringLiteral().str()
) nothrow @nogc;