Ejemplo n.º 1
0
        /// <summary>
        /// Adds the specified item.
        /// </summary>
        /// <param name="item">The item.</param>
        public new void Add(EditRef_t <T> item)
        {
            if (_evaluatingCollection != null)
            {
                _evaluatingCollection.Add(item);
            }

            base.Add(item);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets the key for items in this collection, i.e., the Edit_t ID.
 /// </summary>
 /// <param name="item">EditRef_t.</param>
 /// <returns>Edit_t ID.</returns>
 protected override string GetKeyForItem(EditRef_t <T> item)
 {
     return(item.Id);
 }