reflection - Mirroring method in C# -
is there ways use, mirror method class? i.e.
public class mymethods { public static double func_1 { } public static double func_2 .... .... .... } public class reflector { // call class, should redirected mymethods public something_autoloader_or_like_that{ ... } }
as dynamically call reflector.func_888();
, , if method not found there, should search in mymethods
, execute .
Comments
Post a Comment