Parsing.ParseRgb C# (CSharp) Method

ParseRgb() public static method

public static ParseRgb ( string literal, Color &result ) : bool
literal string
result Color
return bool
    public static bool ParseRgb(string literal, ref Color result)
    {
        //Debug.Log("Parsing " + literal + " as Rgb");
        var i = 0;
        return ParseRgb(literal, ref i, ref result);
    }

Same methods

Parsing::ParseRgb ( string literal, int &from, Color &result ) : bool