C# .0 Code Formatter

time to read 1 min | 170 words

Does anyone knows of a C# 2.0 code formatter that is available now? I want something just like what ReSharper has for 1.1, where you get tons of options for just about anything.

Spesifically, I need something that will understand how to handle anonymous delegates. Right now R# doesn't handle them very well. My current code style is:

//one liner
sw.Action = delegate(ISalesContext sales) { return sales.Items.Count;}

//multi line

sw.Action = delegate(ISalesContext sales)
{
    if(sales.Date.AddMonths(1) > DateTime.Month)
        return 0;
    return sales.Items.Count;
}