Exemplo n.º 1
0
        public object Clone()
        {
            var litem = new LocaleItem(name);

            foreach (var item in this)
            {
                litem.Add((LocaleString)item.Clone());
            }
            return(litem);
        }
Exemplo n.º 2
0
 public void Merge(LocaleItem item)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public override void SetValue(LocaleItem target, string value) => target.Name = value;
Exemplo n.º 4
0
 public override string GetValue(LocaleItem target) => target.Name;