C#
玄蛰
心中一壶酒,手上一把吉他,座前一台电脑,便是江湖
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#对称加密与非对称加密
对称加密——DESusing System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Threading.Tasks;namespace TGSMessage...原创 2019-04-28 16:24:37 · 700 阅读 · 0 评论 -
c#byte操作
byte拼接 List<byte> byteScource = new List<byte>(); byte[] IDs = { 1 }; byte[] type = { 4 }; byteScource.AddRange(IDs); byteScourc...原创 2019-05-08 15:04:34 · 1754 阅读 · 0 评论
分享