wingman007

ReflectionConsoleReflection

Apr 12th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.41 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 Reflection
  12.     {
  13.  
  14.         // private string text;
  15.         // private int activator;
  16.         private string action;
  17.         private string actionNamespace;
  18.         private string actionClass;
  19.         private string actionMethod;
  20.  
  21.         public void Call()
  22.         {
  23.             // https://github.com/vidolch/OLX.fmi/blob/master/Client/Models/MenuItem.cs
  24.             // var classType = Type.GetType(this.actionNamespace + "." + this.actionClass);
  25.             var classType = Type.GetType("Reflection" + "." + "Reflection");
  26.             var action = System.Activator.CreateInstance(classType);
  27.             // MethodInfo method = classType.GetMethod(this.actionMethod);
  28.             MethodInfo method = classType.GetMethod("HelloWorldFromReflection");
  29.             method.Invoke(action, null);
  30.         }
  31.  
  32.         public string HelloWorldFromReflection()
  33.         {
  34.             return "Hello World from reflection!";
  35.         }
  36.  
  37.         public string Action
  38.         {
  39.             get { return action; }
  40.             private set
  41.             {
  42.                 this.action = value;
  43.                 // { "List all products;",       "Client.Renderers@Renderer@Index" },
  44.                 string[] arr = this.action.Split('@');
  45.  
  46.                 this.actionNamespace = arr[0];
  47.                 this.actionClass = arr[1];
  48.                 this.actionMethod = arr[2];
  49.             }
  50.         }
  51.     }
  52. }
  53.  
  54. /*
  55. https://github.com/vidolch/OLX.fmi/blob/master/Client/Constants/Menus.cs
  56. namespace Client.Constants
  57. {
  58.     static class Menus
  59.     {
  60.         public static string[,] MenuItems = new string[,] {
  61.                 { "List all products;",       "Client.Renderers@Renderer@Index" },
  62.                 { "Search for products;",     "Client.Renderers@Renderer@Search" },
  63.                 { "Add new product;",         "Client.Renderers@Renderer@Add" },
  64.                 { "Delete existing product;", "Client.Renderers@Renderer@Remove" },
  65.                 { "Update existing product;", "Client.Renderers@Renderer@Update" },
  66.  
  67.                 // Last one is reserved for back command
  68.                 { "Back to main menu;", "Client.Renderers@Renderer@RenderMainMenu" }
  69.         };
  70.  
  71.         public static int BackActivator = 0;
  72.     }
  73. }
  74. */
Add Comment
Please, Sign In to add comment