public static void Main()
var classeA = new ClasseA();
var existeFuncoes = VerificaExistenciaFuncoes(classeA, "Funcao");
Console.WriteLine(existeFuncoes);
public static bool VerificaExistenciaFuncoes(object obj, string prefixMethod)
var type = obj.GetType();
bool bTodasExistem = true;
for (int i = 1; i <= 10; i++)
var function = type.GetMethod(prefixMethod + i);
public bool Funcao1(string a, string b)
public bool Funcao2(string a, string b)
public bool Funcao10(string a, string b)