Wombat.MamaMsg.updateU16 C# (CSharp) Method

updateU16() public method

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