using System;public class Test{ static void foo(int i) { Console.WriteLine("int " + i); } static void foo(char c) { Console.WriteLine("char " + c); } public static void Main() { char c = '*'; foo(c); foo(+c); }}