Solve an equation of the form Ax^2 + Bx + C = 0.
The class is commented, but if you have any questions don't be affraid to ask.
You may exercise this class in a console application with the following snippet :
QuadraticEquation z = new QuadraticEquation(1, 3, 3);
z.Solve();
Console.WriteLine("D={0}",z.Discriminant());
Console.WriteLine(z.Root1RealPart);
Console.WriteLine(z.Root2RealPart);
Console.WriteLine(z.Root1ImagPart);
Console.WriteLine(z.Root2ImagPart);