예제 #1
0
 public bool Contains(RoomImage value)
 {
     // If value is not of type RoomImage, this will return false.
     return(List.Contains(value));
 }
예제 #2
0
 public void Insert(int index, RoomImage value)
 {
     List.Insert(index, value);
 }
예제 #3
0
 public void Remove(RoomImage value)
 {
     List.Remove(value);
 }
예제 #4
0
 public int Add(RoomImage value)
 {
     return(List.Add(value));
 }
예제 #5
0
 public int IndexOf(RoomImage value)
 {
     return(List.IndexOf(value));
 }
예제 #6
0
 public void Remove(RoomImage value)
 {
     List.Remove(value);
 }
예제 #7
0
 public void Insert(int index, RoomImage value)
 {
     List.Insert(index, value);
 }
예제 #8
0
 public int IndexOf(RoomImage value)
 {
     return (List.IndexOf(value));
 }
예제 #9
0
 public bool Contains(RoomImage value)
 {
     // If value is not of type RoomImage, this will return false.
     return (List.Contains(value));
 }
예제 #10
0
 public int Add(RoomImage value)
 {
     return (List.Add(value));
 }