摘要:
using System;using System.Collections.Generic;using System.Text;using System.Data;using System.IO;using System.Net;using System.Net.Security;using System.Security.Cryptography.X509Certificates;using System.IO.Compression;using System.Net.Cache;namespace SNZO.Common{ /// <summary> /// 上传数据参... 阅读全文
摘要:
public class Source{ private EventHandler _NumberChangeEvent; public event EventHandler NumberChangeEvent { add { _NumberChangeEvent += value; } remove { _NumberChangeEvent -= value; } }} 阅读全文