C# Intermediate: Classes, Interfaces and OOP
最近買的一堂課,覺得還不錯,寫一下學習筆記。
code snippets
ctor | Constructor |
constructor overloading…如果有運用這個方法的話,記得它要有一個預設的,沒有參數的constructor
2-8 有對List的解釋
也可以看官方文件
List<Type>
List is a generic class that takes parameters
2-11
readonly: this field should be initialized only once.
2-14
Indexers什麼時候用