Wombat.MamaMsg.updateI16 C# (CSharp) Method

updateI16() public method

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