Функции

using System;

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

SayGoodby();
//printed "Goodby!"

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