예제 #1
0
        public virtual Object Clone()
        {
            NProperty me = new NProperty();

            me.Name = Name;
            me.Type = Type;
            return(me);
        }
예제 #2
0
 public void InsertAt(int index, NProperty value)
 {
     List.Insert(index, value);
 }
예제 #3
0
 public bool Contains(NProperty value)
 {
     return(List.Contains(value));
 }
예제 #4
0
 public void Remove(NProperty value)
 {
     List.Remove(value);
 }
예제 #5
0
 public int Add(NProperty value)
 {
     return(List.Add(value));
 }