When I create a C# Console Project in Visual Studio, only using System;
is imported.
How to automatically import the below while creating a Project?
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;