I seem to recall reading there was an important difference between method overloading (and constructor chaining) and optional parameters in C# 4.0, but I haven't been able to locate anything acknowledging any difference.
Are there any important differences between the following two implementations?
First
public void Foo()
{
Foo(String.Empty);
}
public void Foo(string message)
{
Console.WriteLine(message);
}
Second
public void Foo(string message = "")
{
Console.WriteLine(message);
}