【C#】配列を同じ値で初期化する

C#, DEVELOP

Enumerable.Repeat を使うと楽です。

例:bool の初期化

var array = Enumerable.Repeat<bool>(false, 32).ToArray();

Posted by kazupon