예제 #1
0
        public void AddToScopeSortFilterList()
        {
            IntList peerSortFilters = this.GetPeerSortFilters(true);

            Global.Tracer.Assert(null != peerSortFilters);
            peerSortFilters.Add(base.m_ID);
        }
예제 #2
0
 public void CopyTo(IntList target)
 {
     if (target != null)
     {
         target.Clear();
         for (int i = 0; i < this.Count; i++)
         {
             target.Add(this[i]);
         }
     }
 }