wingman007

ReflectionConsoleProgram

Apr 12th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.86 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. // For Reflection
  7. using System.Reflection;
  8.  
  9. namespace Reflection
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             // https://github.com/vidolch/OLX.fmi/blob/master/Client/Models/MenuItem.cs
  16.  
  17.             string[,] MenuItems = new string[,] {
  18.                 { "List all products;",       "Client.Renderers@Renderer@Index" },
  19.                 { "Search for products;",     "Client.Renderers@Renderer@Search" },
  20.                 { "Add new product;",         "Client.Renderers@Renderer@Add" },
  21.                 { "Delete existing product;", "Client.Renderers@Renderer@Remove" },
  22.                 { "Update existing product;", "Client.Renderers@Renderer@Update" },
  23.  
  24.                 // Last one is reserved for back command
  25.                 { "Back to main menu;", "Client.Renderers@Renderer@RenderMainMenu" }
  26.             };
  27.  
  28.             Console.WriteLine("The element [0,0] = {0}", MenuItems[0,0]); // "List all products;",
  29.             Console.WriteLine("The element [0,1] = {0}", MenuItems[0, 1]); // "Client.Renderers@Renderer@Index"
  30.             Console.WriteLine("The element [1,0] = {0}", MenuItems[1, 0]); // "Search for products;",
  31.  
  32.             // var classType = Type.GetType(this.actionNamespace + "." + this.actionClass);
  33.             var classType = Type.GetType("Reflection" + "." + "Reflection");
  34.             var action = System.Activator.CreateInstance(classType);
  35.             // MethodInfo method = classType.GetMethod(this.actionMethod);
  36.             MethodInfo method = classType.GetMethod("HelloWorldFromReflection");
  37.             method.Invoke(action, null);
  38.             Console.WriteLine("I am a method from a class used with Reflection. I say: {0}", method.Invoke(action, null));
  39.  
  40.  
  41.         }
  42.     }
  43. }
Add Comment
Please, Sign In to add comment