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 Program
- {
- static void Main(string[] args)
- {
- // https://github.com/vidolch/OLX.fmi/blob/master/Client/Models/MenuItem.cs
- 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" }
- };
- Console.WriteLine("The element [0,0] = {0}", MenuItems[0,0]); // "List all products;",
- Console.WriteLine("The element [0,1] = {0}", MenuItems[0, 1]); // "Client.Renderers@Renderer@Index"
- Console.WriteLine("The element [1,0] = {0}", MenuItems[1, 0]); // "Search for products;",
- // 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);
- Console.WriteLine("I am a method from a class used with Reflection. I say: {0}", method.Invoke(action, null));
- }
- }
- }
Add Comment
Please, Sign In to add comment