any function with parameters of char will not pass. for example: public class MyClass1 { public static void Main() { } public int ccccccc(char theChar) { return 0; } public int test(char theChar) { int aaa = ccccccc(theChar); return aaa; } }