11 lines
147 B
C#
Raw Permalink Normal View History

// Compiler options: -t:library
using System;
namespace blah
{
public delegate void MyFunnyDelegate(object sender, params object[] message);
}