예제 #1
0
        static FastColour ParseWomColour(string value, FastColour defaultCol)
        {
            int argb;

            return(Int32.TryParse(value, out argb) ? FastColour.Argb(argb | fullAlpha) : defaultCol);
        }