authorattribute.cs

来自「Microsoft?Visual C#?.NET (Core Reference」· CS 代码 · 共 28 行

CS
28
字号
using System;

namespace MSPress.CSharpCoreRef.Authoring
{
	[AttributeUsage(AttributeTargets.All)]
    public class AuthorAttribute: Attribute
	{
		public AuthorAttribute(string name)
		{
            _name = name;
		}

        public string Name
        {
            get { return _name; }
        }

        public string Notes
        {
            set { _notes = value; }
            get { return _notes; }
        }

        protected string _name;
        protected string _notes;
	}
}

⌨️ 快捷键说明

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