fill all array csharp with same value

Code Example - fill all array csharp with same value

                
                        public static void Populate<T>(this T[] arr, T value ) {
  for ( int i = 0; i < arr.Length;i++ ) {
    arr[i] = value;
  }
}