FieldInfo[] fields = type.GetFields( );
works and returns all public fields, but when I do
FieldInfo[] fields = type.GetFields( BindingFlags.Pu blic);
I get nothing!! Whats going on? (again, its that simple... if I delete
BindingFlags.Pu blic I get all public fields but if I don't then I get
nothing)
Thanks,
Jon
works and returns all public fields, but when I do
FieldInfo[] fields = type.GetFields( BindingFlags.Pu blic);
I get nothing!! Whats going on? (again, its that simple... if I delete
BindingFlags.Pu blic I get all public fields but if I don't then I get
nothing)
Thanks,
Jon
Comment