Whenever I create a C# class in Visual Studio it has the following lines at the beginning of file:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
I want it to have other namespaces there by default when I create a new C# class. how can I do that?