7 lines
141 B
C#
Raw Permalink Normal View History

// Compiler options: -target:library
public class B
{
public delegate void TestDelegate ();
public virtual event TestDelegate TestEvent;
}