List Properties : Property : Reflection C# Examples


C# Examples » Reflection » Property »

 

List Properties









    
using  System;
using  System.Reflection;

public  interface  IFaceOne
{
    void  MethodA();
}

public  interface  IFaceTwo
{
    void  MethodB();
}

public  class  MyClass:  IFaceOne,  IFaceTwo
{
    public  enum  MyNestedEnum{}
    
    public  int  myIntField;
    public  string  myStringField;

    public  void  myMethod(int  p1,  string  p2)
    {
    }

    public  int  MyProp
    {
        get  {  return  myIntField;  }
        set  {  myIntField  =  value;  }
    }

    void  IFaceOne.MethodA(){}
    void  IFaceTwo.MethodB(){}
}

public  class  MainClass
{
    public  static  void  Main(string[]  args)
    {
        MyClass  f  =  new  MyClass();

              Type  t  =  f.GetType();
        PropertyInfo[]  pi  =  t.GetProperties();
        foreach(PropertyInfo  prop  in  pi)
            Console.WriteLine("Prop:  {0}",    prop.Name);
    }
}
    
   
  
   



Output

Prop: MyProp


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Reflection
» Property