public SqlType Remove(int index)
        {
            SqlType obj = SqlTypeCollection[index];

            SqlTypeCollection.Remove(obj);
            return(obj);
        }
 public void Remove(object obj)
 {
     SqlTypeCollection.Remove(obj);
 }
 public SqlType Add(SqlType obj)
 {
     return(SqlTypeCollection.Add(obj));
 }
 public void Clear()
 {
     SqlTypeCollection.Clear();
 }
 public IEnumerator GetEnumerator()
 {
     return(SqlTypeCollection.GetEnumerator());
 }