在我之前使用机器的开发人员设置了它,所以当我创建一个新的类文件时,我得到了......
//-----------------------------------------------------------------------
// <copyright file="Chart.cs" company="ACompany">
// Copyright (c) ACompany 2012. All rights reserved.
// </copyright>
// <author>Annoying Developer</author>
//-----------------------------------------------------------------------
namespace ACompany.Core.POCO
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// TODO: Add class description
/// </summary>
public class Chart
{
/// <summary>
/// Initializes a new instance of the Chart class
/// </summary>
public Chart()
{
// TODO: Add default constructor logic
}
}
}
这不是视觉工作室的默认设置,我想要默认的后台如何获得它?
谢谢, 皮特
答案 0 :(得分:1)
更新新类的Visual Studio模板。
以下是MSDN上的a link to the topic。
Customizing Project and Item Templates是你应该开始的地方。