资源简介
c# 序列化和反序列化基础示例。
将序列化和反序列化封装成 泛型方法 方便调用,提供多种方式,在文件Serializer.cs文件
用于网络数据传输、数据交换等很方便。
生成的文件在程序所在文件夹内。
加密在DES.cs文件
在“引用”添加 System.Runtime.Serialization
代码添加:
using System.Runtime.Serialization;
将序列化和反序列化封装成 泛型方法 方便调用,提供多种方式,在文件Serializer.cs文件
用于网络数据传输、数据交换等很方便。
生成的文件在程序所在文件夹内。
加密在DES.cs文件
在“引用”添加 System.Runtime.Serialization
代码添加:
using System.Runtime.Serialization;
更多学习示例点击 用户名
代码片段和文件信息
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
public class DES
{
//key is 8 bit
public static string Encode(string str string key)
{
try
{
DESCryptoServiceProvider provider = new DESCryptoServiceProvider();
provider.Key = Encoding.ASCII.GetBytes(key.Substring(0 8));
provider.IV = Encoding.ASCII.GetBytes(key.Substring(0 8));
byte[] bytes = Encoding.GetEncoding(“GB2312“).GetBytes(str);
MemoryStream stream = new MemoryStream();
CryptoStream stream2 = new CryptoStream(stream provider.CreateEncryptor() CryptoStreamMode.Write);
stream2.Write(bytes 0 bytes.Length);
stream2.FlushFinalBlock();
Stri
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 47616 2018-03-15 11:47 demo\.vs\demo\v15\.suo
文件 0 2018-03-15 08:03 demo\.vs\demo\v15\Server\sqlite3\db.lock
文件 610304 2018-03-15 11:47 demo\.vs\demo\v15\Server\sqlite3\storage.ide
文件 189 2018-03-15 08:03 demo\demo\App.config
文件 16896 2018-03-15 11:47 demo\demo\bin\Debug\demo.exe
文件 189 2018-03-15 08:03 demo\demo\bin\Debug\demo.exe.config
文件 34304 2018-03-15 11:47 demo\demo\bin\Debug\demo.pdb
文件 0 2018-03-15 09:13 demo\demo\bin\Debugdemo2.xm
文件 3688 2018-03-15 08:21 demo\demo\demo.csproj
文件 2125 2018-03-15 11:36 demo\demo\DES.cs
文件 8063 2018-03-15 11:46 demo\demo\Form1.cs
文件 6826 2018-03-15 10:25 demo\demo\Form1.Designer.cs
文件 5817 2018-03-15 10:25 demo\demo\Form1.resx
文件 516 2018-03-15 08:03 demo\demo\Program.cs
文件 1306 2018-03-15 08:03 demo\demo\Properties\AssemblyInfo.cs
文件 2821 2018-03-15 08:03 demo\demo\Properties\Resources.Designer.cs
文件 5612 2018-03-15 08:03 demo\demo\Properties\Resources.resx
文件 1091 2018-03-15 08:03 demo\demo\Properties\Settings.Designer.cs
文件 249 2018-03-15 08:03 demo\demo\Properties\Settings.settings
文件 4466 2018-03-15 11:38 demo\demo\Serializer.cs
文件 1111 2018-03-15 08:03 demo\demo.sln
目录 0 2018-03-15 11:47 demo\.vs\demo\v15\Server\sqlite3
目录 0 2018-03-15 08:03 demo\.vs\demo\v15\Server
目录 0 2018-03-15 08:03 demo\.vs\demo\v15
目录 0 2018-03-15 11:47 demo\demo\bin\Debug
目录 0 2018-03-15 11:47 demo\demo\obj\Debug
目录 0 2018-03-15 08:03 demo\.vs\demo
目录 0 2018-03-15 09:13 demo\demo\bin
目录 0 2018-03-15 08:03 demo\demo\obj
目录 0 2018-03-15 08:03 demo\demo\Properties
............此处省略6个文件信息
- 上一篇:OPC 服务器 操作
- 下一篇:C# 操作防火墙(ipseccmd)
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- wince引脚控制程序
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- Syndication实现读取、创建、订阅、更新
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- httpclient source code by csharp
- 动态抓取IPC#实现
- NServiceKit.Redis 基础操作
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- Socke传输 (wince6.0系统)
- UDP Messenger 1.0.unitypackage
- asp.net 网页静态化组件(shipingx-Stati
- SocketAsyncEventArgs完成断开编程
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 猜数小游戏WCF网络编程技术(附服务
- 《C#版Ftp软件源码》
- 基于com串口的文件发送和接收
评论
共有 条评论