예제 #1
0
파일: mpfloat.cs 프로젝트: Delamaine/go2cs
                    private static ref Mpflt newMpflt()
                    {
                        Mpflt a = default;

                        a.Val.SetPrec(Mpprec);
                        return(ref a);
                    }
예제 #2
0
 public Mpcplx(Mpflt Real = default, Mpflt Imag = default)
 {
     this.Real = Real;
     this.Imag = Imag;
 }