public void ForEach()
        {
            var test = new ComplexDoubleMatrix(new Complex[2, 2] {
                { 1, 2 }, { 3, 4 }
            });

            foreach (Complex f in test)
            {
                Assert.IsTrue(test.Contains(f));
            }
        }
		public void ForEach()
		{
			ComplexDoubleMatrix test = new ComplexDoubleMatrix(new Complex[2, 2] { { 1, 2 }, { 3, 4 } });
			foreach (Complex f in test)
				Assert.IsTrue(test.Contains(f));
		}