System.Xml.Xsl.XPathConvert.BigInteger.InitFromBigint C# (CSharp) Method

InitFromBigint() public method

public InitFromBigint ( BigInteger biSrc ) : void
biSrc BigInteger
return void
            public void InitFromBigint(BigInteger biSrc) {
                AssertValid();
                biSrc.AssertValid();
                Debug.Assert((object)this != (object)biSrc);

                InitFromRgu(biSrc.digits, biSrc.length);
            }