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

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