Parsing.ParseByte C# (CSharp) Method

ParseByte() public static method

public static ParseByte ( string literal, float &result ) : bool
literal string
result float
return bool
    public static bool ParseByte(string literal, ref float result)
    {
        //Debug.Log("Parsing " + literal + " as Byte");
        int i = 0;
        return ParseByte(literal, ref i, ref result);
    }

Same methods

Parsing::ParseByte ( string literal, int &from, float &result ) : bool