Wombat.MamaMsg.updateChar C# (CSharp) Method

updateChar() public method

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