Having troubles with C# and its square root computation. Math.sqrt
doesn't support negative arguments.
using System.Numerics;
and consiquently,
Complex
class, works only under .Net 4.0 and higher. Due to project restrictions I can use only .Net 3.5
Is there any workaround available for this problem? Any suggestions how to get complex square root in .Net 3.5?