コード例 #1
0
 /// <summary>
 /// this function used to Remove tne  Clo from the CLOList
 /// </summary>
 /// <param name="id">Indicate the id of the CLo</param>
 public void RemoveFromCLO(int id)
 {
     CLOList.RemoveAt(id);
 }
コード例 #2
0
 /// <summary>
 /// this function used to add tne  Clo from the CLO list
 /// </summary>
 /// <param name="cl">Clo of the CLOClass type</param>
 public void AddIntoCLoList(CLOClass cl)
 {
     CLOList.Add(cl);
 }