Wombat.MamaMsg.updateF64 C# (CSharp) Method

updateF64() public method

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