LitDev.LDSort.pair.pair C# (CSharp) Method

pair() public method

public pair ( string _key, string _value ) : System
_key string
_value string
return System
            public pair(string _key, string _value)
            {
                key = _key;
                value = _value;
                if (bNumber)
                {
                    try
                    {
                        Utilities.getDouble(_value);
                    }
                    catch
                    {
                        bNumber = false;
                    }
                }
            }