Esempio n. 1
0
 /// <summary>Creates a new array and fills it with the same repeated value as many times as it's specified.</summary>
 /// <returns>The new array that contains the repeated element.</returns>
 public T[] ToArray()
 {
     return(ArrayFactory.CreateFilled(Value, Count));
 }