Wombat.MamaMsg.addU16 C# (CSharp) Method

addU16() public method

Add a new 16 bit unsigned int field.
public addU16 ( string name, ushort fid, ushort val ) : void
name string
fid ushort
val ushort
return void
        public void addU16(
			string name,
			ushort fid,
			ushort val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_addU16(nativeHandle, name, fid, val);
            CheckResultCode(code);
        }
MamaMsg