Animatroller.Framework.LogicalDevice.ColorBrightness.CreateBlank C# (CSharp) Method

CreateBlank() public static method

public static CreateBlank ( int size ) : Animatroller.Framework.LogicalDevice.ColorBrightness[]
size int
return Animatroller.Framework.LogicalDevice.ColorBrightness[]
        public static ColorBrightness[] CreateBlank(int size)
        {
            var result = new ColorBrightness[size];
            for (int i = 0; i < size; i++)
                result[i] = new ColorBrightness(Color.Black, 0);

            return result;
        }