11 lines
147 B
C#
11 lines
147 B
C#
// Compiler options: -t:library
|
|
|
|
using System;
|
|
|
|
namespace blah
|
|
{
|
|
|
|
public delegate void MyFunnyDelegate(object sender, params object[] message);
|
|
|
|
}
|