Ive been reading the other examples of this and by I can seem to assign the value of my fields by passing in its name.
private string fieldName; //contains the name of the field I want to edit
void IObserver.Update(object data)
{
FieldInfo field = this.GetType().GetField(fieldName);
if(field != null)
{
field.SetValue(this, data);
}
}
field always ends up null and I cant figure out why