| 123456789101112131415 |
- using System;
- namespace ET
- {
-
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
- public class FriendClassAttribute : Attribute
- {
- public Type Type;
- public FriendClassAttribute(Type type)
- {
- this.Type = type;
- }
- }
- }
|