AlbLib.Texts.TextColor.TextColor C# (CSharp) Method

TextColor() public method

public TextColor ( byte colors ) : System
colors byte /// Array normally of five bytes. ///
return System
        public TextColor(byte[] colors)
        {
            if(colors.Length < 5)throw new ArgumentException("Array must have at least 5 elements.", "colors");
            this.colors = colors;
        }