摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Text; using System.Thre... 阅读全文
摘要:
public int Insert<T>(T m) where T : class { PropertyInfo[] pInfos = m.GetType().GetProperties(); FieldInfo[] fInfos = m.GetType().GetFields(); List<st 阅读全文
摘要:
class Father { public event HCDLL.DGTransString OnEvent; protected void SendEvent(string msg) { if (OnEvent != null) { OnEvent(msg); } } } class Son : 阅读全文