Parsing.ParseDecimal C# (CSharp) Method

ParseDecimal() public static method

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

Same methods

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