我在.NET中创建了一个组件,在设计器代码隐藏中,在将组件拖放到表单上之后,组件有三个额外的注释行。正常的MS组件如下所示:
///
/// myComponentClass1
///
//properties for the component set in the designer here
但是我看起来像这样:
///
/// myComponentClass1
///
///
///
///
//properties for the component set in the designer here
有关如何阻止Visual Studio添加这些额外注释行的任何想法?