budnhead/org.budnhead/ArrayHelper.cs

14 lines
206 B
C#
Raw Normal View History

2017-05-06 12:34:38 +02:00
using System;
2017-05-09 23:41:50 +02:00
namespace org.budnhead.core
2017-05-06 12:34:38 +02:00
{
public static class ArrayHelper
{
public static void Fill<T>(this T[] array,T value){
for (int n=0;n<array.Length;n++)
array[n] = value;
}
}
}