Methods with optional parameter values in C#

void SayGoodby(string message = "Goodby!") {
    Console.WriteLine(message);
}

SayGoodby();
//prints "Goodby!"

SayGoodby("see you");
//prints "see you"