Ejemplo n.º 1
0
        public bool TryGet(string Key, out EntityKeyValue Val)
        {
            foreach (var KV in KVs)
            {
                if (KV.Key == Key)
                {
                    Val = KV;
                    return(true);
                }
            }

            Val = new EntityKeyValue();
            return(false);
        }
Ejemplo n.º 2
0
 public void Add(EntityKeyValue KV)
 {
     KVs.Add(KV);
 }