摘要:
定时器: 单触发定时器:Invoke(string method,int Secondtimes) 过Secondtimes 秒后触发method 函数, 重复触发InvokeRepeating(string method,int Secondtimetowake,int Secondtimeton 阅读全文
摘要:
版本:unity5 引用以下库 代码如下: 阅读全文
摘要:
打开文件并写入: void CreateOrOPenFile(string path, string name, string info){ //路径、文件名、写入内容 StreamWriter sw; FileInfo fi = new FileInfo(path + "//" + name); 阅读全文