Beispiel #1
0
		[TestMethod] //ICloneable
		public void CloneTest()
		{
			int n = 3;
			StackArray<object> data = new StackArray<object>(n);
			data.Push(8);
			data.Push(6);
			data.Push(10);
			data.Clone();

		}