BitcoinLib.BlockchainAPI.Wallet.NewAddress C# (CSharp) Method

NewAddress() public method

Generating a new address.
public NewAddress ( string label = null ) : Address
label string An optional label to attach to this address. It is recommended this is a human readable string e.g. "Order No : 1234". You May use this as a reference to check balance of an order.
return Address
        public Address NewAddress(string label = null)
        {
            return BCw.NewAddress(label);
        }