예제 #1
0
 public void Remove( PropertyItem item )
 {
     List.Remove( item );
 }
예제 #2
0
 public void Insert( int index, PropertyItem item )
 {
     List.Insert( index, item );
 }
예제 #3
0
 public Boolean Contains( PropertyItem item )
 {
     return List.Contains( item );
 }
예제 #4
0
 public int IndexOf( PropertyItem item )
 {
     return List.IndexOf( item );
 }
예제 #5
0
 public int Add( PropertyItem item )
 {
     return List.Add( item );
 }