您可以编辑Visual Studio C#类模板:
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$
using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
public class $safeitemrootname$
{
#region Properties
#endregion Properties
#region Fields
#endregion Fields
#region Constructors
#endregion Constructors
#region Methods
#endregion Methods
}
}
您可以在中看到它们的位置
this
答复