Making a new class in VS10 gives me
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Foo
{
class Bar
{
}
}
Is it possible to setup VS10 so I get this instead?
namespace Foo
{
public class Bar
{
}
}
Yes, you can modify it. See this article for a decent walk-through.
Here’s a snip-it from the article that explains where to find the template:
Step One – find the template
Step Two – modify the template
Step Three – update VS