2021年11月

using System;
using System.Text;
using Nethereum.Hex.HexConvertors.Extensions;
using System.Threading.Tasks;
using Nethereum.Web3;

public class Program
{
    static async Task Main(string[] args)
{
var web3 = new Web3("https://bsc-dataseed1.binance.org");
var balance = await web3.Eth.GetBalance.SendRequestAsync("0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae");
Console.WriteLine("Balance of Ethereum Foundation's account: " + balance.Value);
    //单位转换
    var balanceInEther = Web3.Convert.FromWei(balance.Value);
    var backToWei = Web3.Convert.ToWei(balanceInEther);

}

}