Ejemplo n.º 1
0
        public void Add(Basics.MetaRecord.Tags tag, string value)
        {
            if (string.IsNullOrEmpty(value))
            {
                value = string.Empty;
            }

            this._Records.AddOrUpdate(tag, value, (cName, cValue) => value);
        }
Ejemplo n.º 2
0
        public void Remove(Basics.MetaRecord.Tags tag)
        {
            string dummy;

            this._Records.TryRemove(tag, out dummy);
        }
Ejemplo n.º 3
0
 public void Remove(Basics.MetaRecord.Tags tag) =>
 this._Records.TryRemove(tag, out _);