attributetargets.cs
来自「全功能c#编译器」· CS 代码 · 共 22 行
CS
22 行
using System;
using System.Collections;
using System.Text;
namespace ICSharpCode.SharpRefactory.Parser
{
[Flags]
public enum AttributeTarget
{
Assembly = 0x0001,
Field = 0x0002,
Event = 0x0004,
Method = 0x0008,
Module = 0x0010,
Param = 0x0020,
Property = 0x0040,
Return = 0x0080,
Type = 0x0100
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?