/// <summary> /// Gets a int field; saves its value into the parameter object, which is also the return value. /// </summary> /// <param name="field">this field's tag is used to extract the value from the message; that value is saved back into this object</param> /// <exception cref="FieldNotFoundException">thrown if <paramref name="field"/> isn't found</exception> /// <returns><paramref name="field"/></returns> public Fields.IntField GetField(Fields.IntField field) { field.Obj = GetInt(field.Tag); return(field); }
public void GetField(Fields.IntField field) { field.Obj = GetInt(field.Tag); }