using System; namespace Chernobyl { /// /// Defines the signature for a method which locates a value based on a key. /// /// The type of the . /// The type of the value to return to /// . /// The key associated with the item to locate. /// The method to invoke when the value has been found. public delegate void Find(TKey key, Action callback); }