2007-01-11 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / tests / test-50.cs
bloba05a554ec3ddd9f248b9d3b177d3cc781f9f2c2d
1 using System;
2 using System.Runtime.InteropServices;
4 public class Blah {
6 [DllImport ("user32", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto)]
7 public static extern int MessageBox (int hWnd, string pText, string pCaption, int uType);
9 public static int Main ()
11 MessageBox (0, "Hello from Mono !", "PInvoke Test", 0);
13 return 0;