28890/how-smart-contract-function-using-nethereum-return-result
This is the function:
function getUserAtIndex(uint index) public constant returns(bytes32 userKey) { return userIndex[index]; }
I've deployed the contract and can get the function using:
var getUserAtIndex = contract.GetFunction("getUserAtIndex");
Try this:
var result = getUserAtIndex.CallAsync<byte[]>(123);
Once you set up infura you can ...READ MORE
Whenever a smart contract receives ether via ...READ MORE
Yes, the contract is distributed by every node ...READ MORE
Hey, you gotta provide the contract code, and ...READ MORE
This was a bug. They've fixed it. ...READ MORE
Summary: Both should provide similar reliability of ...READ MORE
You need to install testrpc globally on ...READ MORE
You can use a contract function, on ...READ MORE
Since you have already deployed the contract ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.