摘要:
在使用WPF的时候对int或者bool类型进行绑定出现InvalidCastException: T for DelegateCommand is not an object nor Nullable. <Button Width="200" Height="30" Content="按钮" Com 阅读全文
摘要:
在C#中父类可以直接转子类,叫做协变 子类转父类需要添加强制转换,叫做逆变 public class Person { } public class Student:Person { } var p = new Person(); p = new Student(); //协变是父类转子类,可以直接 阅读全文