I apologize if this is covered somewhere. I did research before posting!
okay, so question...I\'m using GetType( ).GetProperties, but it isn\'t returning simple inst
Using DLR (simple enough, if you know the member name at compile time):
((dynamic)obj).MyFieldOrPropertyName = myValue;
If you only know the member name at run-time, I'd recommend FastMember, as Marc Gravell suggested.