代码改变世界

随笔档案-2016年01月

asp.net访问网络路径方法(模拟用户登录)

2016-01-13 13:14 by Dorisoy, 477 阅读, 收藏,
摘要: public class IdentityScope : IDisposable{ // obtains user token [DllImport("advapi32.dll", SetLastError = true)] static extern bool LogonUser... 阅读全文

C# List使用District去重复数据

2016-01-13 13:13 by Dorisoy, 799 阅读, 收藏,
摘要: class ListDistinctDemo { static void Main(string[] args) { List personList = new List(){ new Person(3),//重复... 阅读全文