I had a method that looked like this in my code: public string Translate( string entity, string field) { string key = Translator .GetKey(entity, field); if (translationCache.ContainsKey(key)) return translationCache[key]; else { string res = this .Translator.Translate(entity,
Read More...