blob: e354bd73feb1c21727964864d90b71acf6469e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Runtime.InteropServices;
public static class MainClass
{
public static void Main (string[] args)
{
}
public delegate Int32 FooDelegate ([In, Optional] int foo);
}
|