Cosmos/source/Indy.IL2CPU/Plugs/FieldAccessAttribute.cs
kudzu_cp 2ce9bbc646
2008-09-21 23:26:17 +00:00

11 lines
259 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Plugs {
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class FieldAccessAttribute: Attribute {
public string Name;
}
}