BitcoinLib.Services.CoinService.GetBlockHash C# (CSharp) Method

GetBlockHash() public method

public GetBlockHash ( long index ) : string
index long
return string
        public string GetBlockHash(long index)
        {
            return _rpcConnector.MakeRequest<string>(RpcMethods.getblockhash, index);
        }