Whenever I create a C # class in Visual Studio, it has the following lines at the beginning of the file:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
I want it to have other default namespaces when I create a new C # class. How can i do this?
Bijan source
share