Ejemplo n.º 1
0
 /// <summary>
 /// 所有集合內活動物件執行Action方法
 /// </summary>
 public void AllAction()
 {
     for (int i = 0; i < _Collection.Count; i++)
     {
         ObjectBase item = _Collection[i];
         item.Action();
     }
 }