Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- // For Reflection
- using System.Reflection;
- namespace Reflection
- {
- class Reflection
- {
- // private string text;
- // private int activator;
- private string action;
- private string actionNamespace;
- private string actionClass;
- private string actionMethod;
- public void Call()
- {
- // https://github.com/vidolch/OLX.fmi/blob/master/Client/Models/MenuItem.cs
- // var classType = Type.GetType(this.actionNamespace + "." + this.actionClass);
- var classType = Type.GetType("Reflection" + "." + "Reflection");
- var action = System.Activator.CreateInstance(classType);
- // MethodInfo method = classType.GetMethod(this.actionMethod);
- MethodInfo method = classType.GetMethod("HelloWorldFromReflection");
- method.Invoke(action, null);
- }
- public string HelloWorldFromReflection()
- {
- return "Hello World from reflection!";
- }
- public string Action
- {
- get { return action; }
- private set
- {
- this.action = value;
- // { "List all products;", "Client.Renderers@Renderer@Index" },
- string[] arr = this.action.Split('@');
- this.actionNamespace = arr[0];
- this.actionClass = arr[1];
- this.actionMethod = arr[2];
- }
- }
- }
- }
- /*
- https://github.com/vidolch/OLX.fmi/blob/master/Client/Constants/Menus.cs
- namespace Client.Constants
- {
- static class Menus
- {
- public static string[,] MenuItems = new string[,] {
- { "List all products;", "Client.Renderers@Renderer@Index" },
- { "Search for products;", "Client.Renderers@Renderer@Search" },
- { "Add new product;", "Client.Renderers@Renderer@Add" },
- { "Delete existing product;", "Client.Renderers@Renderer@Remove" },
- { "Update existing product;", "Client.Renderers@Renderer@Update" },
- // Last one is reserved for back command
- { "Back to main menu;", "Client.Renderers@Renderer@RenderMainMenu" }
- };
- public static int BackActivator = 0;
- }
- }
- */
Add Comment
Please, Sign In to add comment