コード例 #1
0
 public void Insert(Int32 index, OtherGroupsKnowledgebasesData value)
 {
     if (!immutable)
     {
         List.Insert(index, value);
     }
     else
     {
         throw new System.Data.ReadOnlyException();
     }
 }
コード例 #2
0
 public void Add(OtherGroupsKnowledgebasesData value)
 {
     if (!immutable)
     {
         List.Add(value);
     }
     else
     {
         throw new System.Data.ReadOnlyException();
     }
 }
コード例 #3
0
 public Int32 IndexOf(OtherGroupsKnowledgebasesData value)
 {
     return(List.IndexOf(value));
 }
コード例 #4
0
 public Boolean Contains(OtherGroupsKnowledgebasesData value)
 {
     return(List.Contains(value));
 }