Ejemplo n.º 1
0
		public void Insert (int index, Statement element)
		{
			if (element == null) throw new ArgumentNullException ("element");
			InnerList.Insert (index, element);
		}
Ejemplo n.º 2
0
		public void Add (Statement element)
		{
			if (element == null) throw new ArgumentNullException ("element");
			InnerList.Add (element);
		}