【EverEdit用户手册】Application >> CreateStringTable

 

 

1 Application >> CreateStringTable

创建字符串表

原型:

StringTable CreateStringTable();

1.1 参数

***[in] ***

1.2 返回值

StringTable: 返回字符串表

1.3 版本

EverEdit 4.5.0(4500)及之后版本。

1.4 备注

  详细使用说明参考对你相关帮助

1.5 使用样例

 var strTb = CreateStringTable();
 strTb.AddItem("key1", "value1");  //添加记录
 strTb.AddItem("key1", "value1");  //添加记录,可以重复
 PrintLine("表记录数:" + strTb.GetCount());
 strTb = null;
posted @ 2024-12-13 00:01  tyysoft  阅读(5)  评论(0)    收藏  举报