Wombat.MamaMsg.getI8 C# (CSharp) Method

getI8() public method

Get a I8, signed 8 bit integer, field.
public getI8 ( string name, ushort fid, sbyte valueIfMissing ) : sbyte
name string
fid ushort
valueIfMissing sbyte
return sbyte
        public sbyte getI8(
			string name,
			ushort fid,
			sbyte valueIfMissing)
        {
            sbyte result = 0;
            if (tryI8 (name, fid, ref result))
                return result;
            else
                return valueIfMissing;
        }

Same methods

MamaMsg::getI8 ( Wombat.MamaFieldDescriptor descriptor ) : sbyte
MamaMsg::getI8 ( Wombat.MamaFieldDescriptor descriptor, sbyte valueIfMissing ) : sbyte
MamaMsg::getI8 ( string name, ushort fid ) : sbyte
MamaMsg