Wombat.MamaMsg.updateU64 C# (CSharp) Method

updateU64() public method

Update the value of an existing U64 field. If the field does not exist it is added.
public updateU64 ( string name, ushort fid, ulong val ) : void
name string
fid ushort
val ulong
return void
        public void updateU64(
			string name, 
			ushort fid,
			ulong val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateU64(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg