随笔分类 - C# 基础
摘要:1.使用Marshal类的StructureToPtr与PtrToStructure函数对object与byte数组进行转换 命名空间:System.Runtime.InteropServices /// <summary> /// 将对象转换为byte数组 /// </summary> /// <
阅读全文
摘要:拼接字符串的形式 DateTime dateTime=Convert.ToDateTime("20201222".Substring(0,4)+"-"+"20201222".Substring(4,2)+"-"+"20201222".Substring(6,2)); Convert.ToDateTi
阅读全文