Esempio n. 1
0
 public void Remove(Character value)
 {
     List.Remove(value);
 }
Esempio n. 2
0
 public void Insert(int index, Character value)
 {
     List.Insert(index, value);
 }
Esempio n. 3
0
 public bool Contains(Character value)
 {
     // If value is not of type Character, this will return false.
     return (List.Contains(value));
 }
Esempio n. 4
0
 public int IndexOf(Character value)
 {
     return (List.IndexOf(value));
 }
Esempio n. 5
0
 public int Add(Character value)
 {
     return (List.Add(value));
 }