7 lines
141 B
C#
7 lines
141 B
C#
|
// Compiler options: -target:library
|
||
|
|
||
|
public class B
|
||
|
{
|
||
|
public delegate void TestDelegate ();
|
||
|
public virtual event TestDelegate TestEvent;
|
||
|
}
|