static void Main(string[] args){Console.Write(sum(1, 2));Console.Read();}public static int sum(int a, int b){return a + b;}public static int sum(int a, int b, int c = 3){return a + b + c;}will it work ?
if yes, then which method ?
if no, then runtime error / compile time error ?