摘要:
解决办法:创建代理delegate void SetTextCallback(string text);创建和启动线程this.demoThread = new Thread(new ThreadStart(this.ThreadProcUnsafe)); this.demoThread.Start();线程中要求改主窗体UI中的text属... 阅读全文
摘要:
相当于序列化与反序列化,但是不用借助外部文件1、struct转换为byte[]static byte[] StructToBytes(object structObj) { int size = Marshal.SizeOf(structObj); IntPtr buffer = Marshal.AllocHGlobal(size);... 阅读全文
摘要:
简单例子如下:using System.IO;using System.Runtime.Serialization;using System.Runtime.Serialization.Formatters.Binary;加上命名空间public partial class Form1 : Form { public Form1() { In... 阅读全文
摘要:
注意要序列化的对象可以控制输出节点名称、样式、是否显示,方法如下: 阅读全文