IndexAttribute.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tools
{
public class IndexAttrib : System.Attribute
{
public int Index { private set; get; }
public IndexAttrib(int Index)
{
this.Index = Index;
}
}
}