You have already completed these exercises!
Do you want to take them again?
You completed the C# Default Parameter Exercises from W3Schools.com
Share on:
What will the following code output?static void MyMethod(string country = "Norway"){ Console.WriteLine(country);}static void Main(string[] args){ MyMethod();}
static void MyMethod(string country = "Norway"){ Console.WriteLine(country);}static void Main(string[] args){ MyMethod();}