摘要: public object Clone() { BinaryFormatter Formatter = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.Clone)); MemoryStream stream = new MemoryStream(); Formatter.Serialize(stream, this); stream.Position = 0; object ... 阅读全文
posted @ 2012-09-22 14:02 Rhythmk 阅读(168) 评论(0) 推荐(0) 编辑
Rhythmk 个人笔记