摘要:
public class Student { public int ID { get; set; } public string Name { get; set; } public int Age { get; set; } public DateTime CreateTime { get; set 阅读全文
摘要:
https://www.cnblogs.com/profession/p/6222489.html //四种深拷贝方法 public static T DeepCopyByReflect<T>(T obj) { //如果是字符串或值类型则直接返回 if (obj is string || obj.G 阅读全文
摘要:
https://www.cnblogs.com/jizhongfong/p/4384689.html var bind = new Binding("Enabled", OrderViewModel.Instance.Commands.ThreadManager, "IsRunning"); bin 阅读全文