摘要: 1.Redis 安装测试: 安装: 安装包 链接:https://pan.baidu.com/s/1BzuqRNJHW1MiB4xm4UT4MA 提取码:pvrj 使用: 运行包内 redis-server.exe 启动 Redis 服务 ,运行包内 redis-cli.exe 启动客户端 (本地自 阅读全文
posted @ 2021-04-15 17:46 _萧朗 阅读(655) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine; using System.Collections; using UnityEngine.UI; using System.Collections.Generic; using System.Threading; using System.Linq; using 阅读全文
posted @ 2021-03-31 09:57 _萧朗 阅读(141) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; using UnityEngine.UI; using System; using System.Threa 阅读全文
posted @ 2021-03-29 16:02 _萧朗 阅读(1585) 评论(1) 推荐(0) 编辑
摘要: 1.C# 字典读取Json文件: 1 Dictionary<string, Dictionary<string, float>> Dic_Infos = new Dictionary<string, Dictionary<string, float>>(); 2 3 string path = @" 阅读全文
posted @ 2020-11-18 16:02 _萧朗 阅读(1916) 评论(0) 推荐(0) 编辑
摘要: 1.unity模块-调用WebAPI: 1 using UnityEngine; 2 using System.Collections; 3 using System.IO; 4 using System.Collections.Generic; 5 using System.Linq; 6 usi 阅读全文
posted @ 2020-11-05 18:34 _萧朗 阅读(438) 评论(2) 推荐(0) 编辑
摘要: 1 void Update() 2 { 3 //左Ctrl键 4 if (Input.GetKey(KeyCode.LeftControl)) 5 { 6 B_LeftCtrl = true; 7 } 8 else 9 { 10 B_LeftCtrl = false; 11 } 12 13 if ( 阅读全文
posted @ 2020-06-11 17:41 _萧朗 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: 1.字体的初始化类: 1 using Microsoft.Xna.Framework; 2 using Microsoft.Xna.Framework.Graphics; 3 using System; 4 using System.Linq; 5 6 namespace xiaolang 7 { 阅读全文
posted @ 2020-05-21 14:45 _萧朗 阅读(150) 评论(0) 推荐(0) 编辑
摘要: XML 格式: 1 <?xml version="1.0" encoding="utf-8"?> 2 <DictionaryNotes> 3 <DictionaryNote name="CFFE-FLOOR-DM"> 4 <B_IsSuccess>True</B_IsSuccess> 5 <Load 阅读全文
posted @ 2020-03-20 16:43 _萧朗 阅读(470) 评论(0) 推荐(0) 编辑
摘要: private void DelFile(string FilePath) { if (Directory.Exists(FilePath)) { try { DirectoryInfo dir = new DirectoryInfo(FilePath); FileSystemInfo[] file 阅读全文
posted @ 2020-03-20 16:03 _萧朗 阅读(493) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2020-03-12 16:27 _萧朗 阅读(429) 评论(0) 推荐(0) 编辑