예제 #1
0
        public void PropagateValue(string culture)
        {
            if (Cultures.IsSupported(culture))
            {
                string value = null;

                switch (culture)
                {
                case "EN":
                    value = this.EN;
                    break;
                }

                this["EN"] = value;
            }
        }
예제 #2
0
 public string ToString(string culture)
 {
     return(Cultures.IsSupported(culture) ? this.ToString() : this[Cultures.Default]);
 }