The below code would be quite cool if it worked. However, I can't get it to compile, so I'm assuming this isn't going to work in any form?
public void foo(char[] bar = new char[]{'a'})
{
}
The next-best option is to just do
public void foo(char[] bar = null)
{
if (bar==null)
bar = new {'a'};
}