摘要:
首先准备两个类 1 private class Person 2 { 3 public int CityID { set; get; } 4 5 public string Name { set; get; } 6 } 7 8 private class City 9 { 10 public int 阅读全文
摘要:
前面用了Background方法来更新进度条,这次用更好用异步方法来更新进度条 先看效果 cs代码 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using 阅读全文