attributesection.cs
来自「全功能c#编译器」· CS 代码 · 共 26 行
CS
26 行
// created on 08.09.2003 at 16:17
using SharpDevelop.Internal.Parser;
using System.Collections;
namespace VBBinding.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 + =
减小字号Ctrl + -
显示快捷键?