versionattribute.cs
来自「Data Structures and Algorithms with Obj」· CS 代码 · 共 18 行
CS
18 行
namespace Opus6
{
using System;
[AttributeUsage(AttributeTargets.Interface | AttributeTargets.Struct | AttributeTargets.Class)]
public class VersionAttribute : Attribute
{
public VersionAttribute(string version)
{
this.version = "@(#) " + version;
}
public readonly string version;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?