Z.Expressions.SqlServer.Eval.SQLNET.GETVALUE C# (CSharp) Method

GETVALUE() public method

Gets the value associated with the specified key.
Throws an exception if no value is associated with the specified key.
public GETVALUE ( string key ) : object
key string The key of the value to get.
return object
        public object GETVALUE(string key)
        {
            return GetValue(key);
        }
    }
SQLNET