【C#】配列を同じ値で初期化する C# 2021.02.06 Enumerable.Repeat を使うと楽です。 例:bool の初期化 var array = Enumerable.Repeat<bool>(false, 32).ToArray();