Example #1
0
        static void Main(string[] args)
        {
            Reflector.InfoAboutClassToFile("Student");
            Reflector.ShowPublicMethods("Student");
            Reflector.ShowFieldsAndProperties("Student");
            Reflector.ShowInterfaces("Student");
            Reflector.ShowMethodsWithParameter("Student", typeof(int));
            Reflector.CallMethod("Student", "Study");


            Console.ReadKey();
        }