Ejemplo n.º 1
0
        static public Object ConvertNumberStringSymbolChar(string s, int baseof = 10, bool allowfp = false, bool allowstrings = false, bool replaceescape = false, bool allowarraymembersymbols = false)
        {
            StringParser sp = new StringParser(s);

            return(sp.ConvertNumberStringSymbolChar(baseof, allowfp, allowstrings, replaceescape, allowarraymembersymbols));
        }
Ejemplo n.º 2
0
        static public Object ConvertNumberStringSymbolChar(string s, int baseof = 10, bool allowfp = false, bool allowstrings = false, bool replaceescape = false, Func <Object> Top = null)
        {
            StringParser sp = new StringParser(s);

            return(sp.ConvertNumberStringSymbolChar(baseof, allowfp, allowstrings, replaceescape, Top));
        }