Deeper Reflection:Finding Members : MemberInfo « Reflection « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Reflection » MemberInfoScreenshots 
Deeper Reflection:Finding Members
Deeper Reflection:Finding Members
 
/*
A Programmer's Introduction to C# (Second Edition)
by Eric Gunnerson

Publisher: Apress  L.P.
ISBN: 1-893115-62-3
*/
// 36 - Deeper into C#\Deeper Reflection\Finding Members
// copyright 2000 Eric Gunnerson
using System;
using System.Reflection;
class MyClass
{
    MyClass() {}
    static void Process() {}
    public int DoThatThing(int i, Decimal d, string[] args)
    {
        return 55;
    }
    public int        value = 0;
    public float        log = 1.0f;
    public static int    value2 = 44;
}
public class DeeperReflectionFindingMembers
{    
    public static void Main(String[] args)
    {
        // iterate through the fields of the class
        Console.WriteLine("Fields of MyClass");
        Type t = typeof (MyClass);
        foreach (MemberInfo m in t.GetFields())
        {
            Console.WriteLine("{0}", m);
        }
        
        // and iterate through the methods of the class
        Console.WriteLine("Methods of MyClass");
        foreach (MethodInfo m in t.GetMethods())
        {
            Console.WriteLine("{0}", m);
            foreach (ParameterInfo p in m.GetParameters())
            {
                Console.WriteLine("  Param: {0} {1}",
                p.ParameterType, p.Name);
            }
        }
    }
}

           
         
  
Related examples in the same category
1.Get MethodInfo and MemberInfo
2.Get variable base type and public numbers
3.Gets the member's underlying type.
4.Gets the member's value on the object.
5.Sets the member's value on the target object.
6.Determines whether the specified MemberInfo can be read.
7.Determines whether the specified MemberInfo can be set.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.