Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
Please show us the class. – SLaks Aug 26 '12 at 22:23

1 Answer

up vote 2 down vote accepted

The Get* methods in .Net reflection will only search public members by default.
To get a private field, pass BindingFlags.NonPublic | BindingFlags.Instance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.