I was watching a screencast of someone using Resharper (on VS 2010 or 2008, not sure) where they were able to fill in a test name with a string literal:
public class FooTest
{
public void "runs backgrounnd process until complete"
and then some command transformed it to
public class FooTest
{
public void runs_backgrounnd_process_until_complete()
{
I was wondering if anyone knew what that command was.
It is a visual studio macro that originally came from JP Boodhoo’s Nothing But .NET Boot Camp class. This is it: