Tagged Questions
The bindingflags tag has no wiki summary.
12
votes
3answers
3k views
BindingFlags.IgnoreCase not working for Type.GetProperty()?
Imagine the following
A type T has a field Company.
When executing the following method it works perfectly:
Type t = typeof(T);
t.GetProperty("Company")
Whith the following call I get null though
...
5
votes
6answers
7k views
C# GetType().GetFields problem
I am using the Reflection classes in order to get all the fields inside a certain object.
My problem however is that it works perfectly when the fields are inside a normal class, like:
class test
{
...
0
votes
3answers
27 views
Filter “own members” with BindingFlags
I got the following code :
public class PluginShape : INotifyPropertyChanged
{
private string _Name;
public string Name
{
get { return _Name; }
set
{
...