Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[IDE][Enhancement] Add common usings by default when adding a new class

Open blat-blatnik opened this issue 4 years ago • 0 comments

When I add a new class to a project, the compiler currently inserts some boilerplate code in the new file:

namespace $(ProjectName)
{
	class $(ClassName)
	{
	}
}

But then I always have to go and add using System; using System.Collections; using System.IO; at the top. I think this is common enough that these should be included in the template:

using System;
using System.IO;
using System.Collections;

namespace $(ProjectName)
{
	class $(ClassName)
	{
	}
}

That will save a few keystrokes every time.

blat-blatnik avatar Dec 11 '21 10:12 blat-blatnik