BitSharper.EcKey.GetPrivateKeyEncoded C# (CSharp) Method

GetPrivateKeyEncoded() public method

Exports the private key in the form used by the Satoshi client "dumpprivkey" and "importprivkey" commands. Use the DumpedPrivateKey.ToString method to get the string.
public GetPrivateKeyEncoded ( NetworkParameters @params ) : DumpedPrivateKey
@params NetworkParameters
return DumpedPrivateKey
        public DumpedPrivateKey GetPrivateKeyEncoded(NetworkParameters @params)
        {
            return new DumpedPrivateKey(@params, GetPrivKeyBytes());
        }