コード例 #1
0
 public void Insert(int index, ExampleScrollItemData item)
 {
     _data.Insert(index, item);
 }
コード例 #2
0
 public int IndexOf(ExampleScrollItemData item)
 {
     return(_data.IndexOf(item));
 }
コード例 #3
0
 public bool Contains(ExampleScrollItemData item)
 {
     return(_data.Contains(item));
 }
コード例 #4
0
 public bool Remove(ExampleScrollItemData item)
 {
     return(_data.Remove(item));
 }
コード例 #5
0
 public void Add(ExampleScrollItemData item)
 {
     _data.Add(item);
 }