Wombat.MamaMsg.updateU16 C# (CSharp) 메소드

updateU16() 공개 메소드

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
리턴 void
        public void updateU16(
			string name,
			ushort fid,
			ushort val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateU16(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg