
C#基础
RocketJ
Unity Create World
展开
-
C# List 随机排序
/// <summary> /// 随机排序 /// </summary> public List<T> RandomSortList<T>(List<T> list) { System.Random random = new System.Random(); List<T> nList = new List<T>(); foreach...原创 2021-02-18 13:54:59 · 1358 阅读 · 0 评论 -
C#秒转换为时分秒
private string GetHMSTime(float time) { float h = Mathf.FloorToInt(time / 3600f); float m = Mathf.FloorToInt(time / 60f - h * 60f); float s = Mathf.FloorToInt(time - m * 60f - h * 3600f); return h.ToString("00") + "...原创 2021-02-01 11:11:13 · 724 阅读 · 0 评论