c#
素伦殇
使用unity进行游戏开发
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
foreach遍历数组
代码如下:Console.WriteLine("请输入一行字符串:"); string str = Console.ReadLine(); Console.WriteLine("遍历数组后,输出的为:"); foreach (int i in str) { Console.原创 2017-06-10 17:20:06 · 1727 阅读 · 0 评论 -
string.Format对C#字符串格式化
string.Format对C#字符串格式化 string.Format对C#字符串格式化 出处 常用的格式化数值结果表 常用的几种实例 格式化货币 微软MSDN对string.format的方法说明: 格式说明符 名称 说明 标准 DateTime 格式字符串 自定义 DateTime 格式字符串 枚举格式字符串 快捷键 出处 http://www.cnblogs....转载 2018-03-18 18:20:53 · 1231 阅读 · 0 评论 -
文件操作
<code class="hljs cs">using UnityEngine; #if UNITY_EDITOR using UnityEditor; using System; using System.IO; using System.Threading; public static class FileStaticAPI { /// 检测文件是否存在Applicat...转载 2018-09-14 15:30:38 · 179 阅读 · 0 评论
分享