Exemplo n.º 1
0
        public void OnCreated(CreationEventArgs e)
        {
            CreationEventHandler temp = Created;

            if (temp != null)
            {
                temp(this, e);
            }
        }
Exemplo n.º 2
0
        public CacheTable(CreationEventHandler <TKey, TValue> creational)
        {
            if (creational == null)
            {
                throw new NullReferenceException("delegate get value cannot be null");
            }

            _createFunction = creational;
            _cached         = new Dictionary <TKey, TValue>();
        }
Exemplo n.º 3
0
 public Island(CreationEventHandler <T> birthSolution) : this()
 {
     _birthSolution = birthSolution;
 }