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

updateU8() 공개 메소드

Update the value of an existing U8 field. If the field does not exist it is added.
public updateU8 ( string name, ushort fid, byte val ) : void
name string
fid ushort
val byte
리턴 void
        public void updateU8(
			string name,
			ushort fid,
			byte val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateU8(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg