仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>
This commit is contained in:
16
lib/options-parser/Description/DescriptionAttribute.cs
Normal file
16
lib/options-parser/Description/DescriptionAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Antmicro.OptionsParser
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
||||
public class DescriptionAttribute : Attribute
|
||||
{
|
||||
public DescriptionAttribute(string description)
|
||||
{
|
||||
Value = description;
|
||||
}
|
||||
|
||||
public string Value { get; private set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user