copyrightattribute.cs

来自「Data Structures and Algorithms with Obj」· CS 代码 · 共 18 行

CS
18
字号
namespace Opus6
{
    using System;

    [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Struct | AttributeTargets.Class)]
    public class CopyrightAttribute : Attribute
    {
        public CopyrightAttribute(string copyright)
        {
            this.copyright = "@(#) " + copyright;
        }


        public readonly string copyright;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?