ds_list_write(id);
参数 | 描述 |
---|---|
id | 要写入的数据结构的id。 |
返回: String(字符串)
This function returns a string which can then be stored or transferred to another data structure using the ds_list_read function.
注意:返回的字符串不是人类可以理解的字符串,而是数据结构内容的转储
var str;
ini_open("save.ini");
str =ds_list_write(list);
ini_write_string("Lists", "0", str);
ds_list_clear(list);
ini_close();
The above code opens an ini file and then writes a string containing the information stored in the ds_list indexed in the variable "list". The list is then cleared and the ini file closed.