2014-08-13 10:39:27 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
public struct S
|
|
|
|
{
|
|
|
|
public int A { get; private set;}
|
|
|
|
public event EventHandler eh;
|
|
|
|
|
|
|
|
public S (int a)
|
|
|
|
{
|
|
|
|
this.eh = null;
|
|
|
|
A = a;
|
|
|
|
}
|
2015-04-07 09:35:12 +01:00
|
|
|
|
|
|
|
public static void Main ()
|
|
|
|
{
|
|
|
|
}
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|