Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            PLKey other = obj as PLKey;

            if (other == null)
            {
                return(false);
            }
            return(Key == other.Key);
        }
Exemplo n.º 2
0
 public PLKeyValuePair(PLKey key, IPLItem value)
 {
     Key   = key;
     Value = value;
 }