Castle.Components.DictionaryAdapter.Xml.SingletonDispenser<TKey, TItem>
namespace Castle.Components.DictionaryAdapter.Xml
{
public class SingletonDispenser<TKey, TItem> where TItem : class
{
public TItem this[TKey key] { get; set; }
public SingletonDispenser(Func<TKey, TItem> factory);
}
}