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

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -