Send comments on this topic. |
|
Glossary Item Box
Cause
The file header at the top of a C# code file is missing a copyright tag.
Rule Description
//-----------------------------------------------------------------------
// <Tag>A file header which does not contain a copyright tag</Tag>
//-----------------------------------------------------------------------
A file header should include a copyright tag, as follows:
//-----------------------------------------------------------------------
// <copyright file="Widget.cs" company="Sprocket Enterprises">
// Copyright (c) Sprocket Enterprises. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.