2024年7月29日活動記録
new int[] {9999, 9999, 999};
これは他のクラスにも使える。
new XXXCalss() {初期値を代入}。
public class Pet
{
public required int Age;
public string Name;
}//
Age
field is necessary to be initialized.
// You don’t need to initializeName
property
var pet = new Pet() { Age = 10};// Compiler error:
オブジェクト初期化子とコレクション初期化子 (C# プログラミング ガイド)
// Error CS9035 Required member 'Pet.Age’ must be set in the object initializer or attribute constructor.
// var pet = new Pet();
キャストについて
https://ufcpp.net/study/csharp/oo_polymorphism.html#downcast
ショートカット
ディスカッション
コメント一覧
まだ、コメントがありません