Wombat.MamaMsg.updateI32 C# (CSharp) Method

updateI32() public method

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