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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -