CEngineSharp_Server.Utilities.Color.ToString C# (CSharp) Method

ToString() public method

Provide a string describing the object
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "[Color]" +
                   " R(" + R + ")" +
                   " G(" + G + ")" +
                   " B(" + B + ")" +
                   " A(" + A + ")";
        }