Dict.GetStrByKey C# (CSharp) Method

GetStrByKey() private static method

private static GetStrByKey ( string key ) : string
key string
return string
    private static string GetStrByKey(string key)
    {
        string ret = null;
        if (null != OnFindDictionary) {
            ret = OnFindDictionary(key);
        }
        return ret;
    }