爱笑小刺猬

文章
6
资源
0
加入时间
2年10月24天

.NET Book Zero 读书笔记(三)(从C++的使用者角度学习C#)InteroperabilityDates and TimesEvents and DelegatesFiles and StreamsString TheoryGenericsNullable TypesAppendix

InterfacesInterface看起来像是Class或者Struct,但是里面的method都没有body,比如:// Interfaces are entirely overhead! They contain no code.public interface IComparable{ int CompareTo(object obj);}.NET Framework里的接口都是I开头的,但是这也只是一种命名习惯,Interfaces里也可以有Property,因为Property其