Exemplo n.º 1
0
        public void ForEach()
        {
            ComplexFloatMatrix test = new ComplexFloatMatrix(new ComplexFloat[2, 2] {
                { 1f, 2f }, { 3f, 4f }
            });

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