上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页
摘要: //压缩字节 //1.创建压缩的数据流 //2.设定compressStream为存放被压缩的文件流,并设定为压缩模式 //3.将需要压缩的字节写到被压缩的文件流 public static byte[] CompressBytes(byte[] bytes) { using (MemoryStre 阅读全文
posted @ 2020-09-11 13:47 艾孜尔江 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: private Texture2D TextureToTexture2D(Texture texture) { Texture2D texture2D = new Texture2D(texture.width, texture.height, TextureFormat.RGBA32, false 阅读全文
posted @ 2020-09-11 13:46 艾孜尔江 阅读(688) 评论(0) 推荐(0) 编辑
摘要: public static byte[] Color32ArrayToByteArray(Color32[] colors) { if (colors == null || colors.Length == 0) return null; int lengthOfColor32 = Marshal. 阅读全文
posted @ 2020-09-11 13:43 艾孜尔江 阅读(1331) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; public class MyClass { struct Name{ public string FirstName; public string LastName; public string Get 阅读全文
posted @ 2020-09-10 18:55 艾孜尔江 阅读(266) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Diagnostics; namespace TestListArrayPerformance { class Program { static void Main(string 阅读全文
posted @ 2020-09-09 11:01 艾孜尔江 阅读(3206) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1991547/202009/1991547-20200909103222348-1530715603.png) 阅读全文
posted @ 2020-09-09 10:32 艾孜尔江 阅读(800) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1991547/202009/1991547-20200909101705925-723897119.png) 阅读全文
posted @ 2020-09-09 10:17 艾孜尔江 阅读(2950) 评论(0) 推荐(0) 编辑
摘要: 当我连着手机充电的时候,启动模拟器调试,执行ADB指令时,报错。 C:\Users\Alexander>adb shell error: more than one device and emulator C:\Users\Alexander>adb install e:\good.apk erro 阅读全文
posted @ 2020-09-08 08:33 艾孜尔江 阅读(2093) 评论(0) 推荐(0) 编辑
摘要: class http_server { const HOST = "127.0.0.1"; const PORT = 8811; protected $server = null; public function __construct() { $this->server = new swoole_ 阅读全文
posted @ 2020-09-07 10:17 艾孜尔江 阅读(507) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; /*by Alexander*/ public class PositionChangerManager : MonoBehaviour { 阅读全文
posted @ 2020-09-01 09:49 艾孜尔江 阅读(1918) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页