📄 attributesection.cs
字号:
// created on 08.09.2003 at 16:17
using SharpDevelop.Internal.Parser;
using System.Collections;
namespace CSharpBinding.Parser.SharpDevelopTree
{
public class AttributeSection : AbstractAttributeSection
{
public AttributeSection(AttributeTarget attributeTarget,
AttributeCollection attributes) {
this.attributeTarget = attributeTarget;
this.Attributes = attributes;
}
}
public class ASTAttribute : AbstractAttribute
{
public ASTAttribute(string name, ArrayList positionalArguments, SortedList namedArguments)
{
this.name = name;
this.positionalArguments = positionalArguments;
this.namedArguments = namedArguments;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -