blob: 1cc147fdb1e48a55476b99a66ba3cdae2a3426a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
namespace Test
{
public abstract class CustomParentAttribute : Attribute
{
public abstract void DoSomething ();
}
[CustomChild]
public class MyClass
{
private sealed class CustomChildAttribute : CustomParentAttribute
{
public override void DoSomething ()
{
}
}
public static void Main ()
{
}
}
}
|