我试过四处寻找(也许我没有正确写字)。
我想在添加新界面时编辑使用块的默认位置& 2013年视觉工作室的课程。
目前:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace root.useful.project
{
///--
}
期望的变化:
namespace root.more.useful.project
{
#region Usings /// <- Some may consider this absolutely evil however project
/// manager insists [sorry!] and I don't want to write it +100x.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#endregion
///--
}