Q:

C# program to print method names and its parameters using reflection classes

0

C# program to print method names and its parameters using reflection classes

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to print method names and its parameters using reflection classes is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to print method names and 
//its parameters using reflections.

using System;
using System.Reflection;

class Sample
{
    int num1;
    int num2;

    public void SetValues(int n1, int n2)
    {
        num1 = n1;
        num2 = n2;
    }

    public void PrintValues()
    {
        Console.WriteLine("Num1 :"+ num1);
        Console.WriteLine("Num2 :"+ num2);
    }

    static void Main(string[] args)
    {
        Assembly asm;
        Type[] types;

        asm = Assembly.GetExecutingAssembly();
        types = asm.GetTypes();

        foreach (Type cls in types)
        {
            MethodInfo[] methodNames = cls.GetMethods();
            foreach (MethodInfo method in methodNames)
            {
                Console.WriteLine(method.Name);

                ParameterInfo[] param = method.GetParameters();
                foreach (ParameterInfo p in param)
                {
                    Console.WriteLine("\t"+p.Name);
                }

            }
        }
    }
}

Output:

SetValues
        n1
        n2
PrintValues
ToString
Equals
        obj
GetHashCode
GetType
Press any key to continue . . .

Explanation:

In the above program, we created two classes Sample and Program. Here, we imported the System.Reflection to use Assembly class.

The Program class contains the static method Main(), the Main() method is the entry point for the program.

Here, we created reference asm of assembly class which is initialized with object returned by the GetExecutingAssembly(), and then we get types from the current program assembly and got the name of classes that are created within the current program. After that, we got the name of methods created within the classes using the GetMethods() method of MethodInfo class and then got the name of parameters that are printed on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to print constructors of the specified ... >>
<< C# program to print class names and its method nam...