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

C#

Enumerable.Repeat を使うと楽です。

例:bool の初期化

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