public void PropagateValue(string culture) { if (Cultures.IsSupported(culture)) { string value = null; switch (culture) { case "EN": value = this.EN; break; } this["EN"] = value; } }
public string ToString(string culture) { return(Cultures.IsSupported(culture) ? this.ToString() : this[Cultures.Default]); }