仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>
This commit is contained in:
15
lib/options-parser/Description/NumberOfElementsAttribute.cs
Normal file
15
lib/options-parser/Description/NumberOfElementsAttribute.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Antmicro.OptionsParser
|
||||
{
|
||||
public class NumberOfElementsAttribute : Attribute
|
||||
{
|
||||
public NumberOfElementsAttribute(int max)
|
||||
{
|
||||
Max = max;
|
||||
}
|
||||
|
||||
public int Max { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user