com.kumakore.sample.NotificationPackage.getstring C# (CSharp) Method

getstring() public method

public getstring ( string key ) : string
key string
return string
        public string getstring(string key)
        {
            if (_map.ContainsKey(key)) {
                return _map[key];
            } else {
                Kumakore.LOGE(TAG, " key='" + key + "' not found.");
                return "";
            }
        }