Microsoft.Xna.Framework.ColorExtensions.ToInteger C# (CSharp) Method

ToInteger() public static method

public static ToInteger ( this color ) : uint
color this
return uint
        public static uint ToInteger(this Color color)
        {
            //return color.PackedValue;
            return 0;
        }