2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-113.cs
blobc26268c1432e6fe76abc36b4c14384cc3bde297c
1 using System;
3 class X {
5 IntPtr Raw;
7 void g_object_get (IntPtr obj, string name, out string val, IntPtr term)
9 val = null;
12 public void GetProperty (String name, out String val)
14 g_object_get (Raw, name, out val, new IntPtr (0));
17 void g_object_get (IntPtr obj, string name, out bool val, IntPtr term)
19 val = true;
22 public void GetProperty (String name, out bool val)
24 g_object_get (Raw, name, out val, new IntPtr (0));
27 public static int Main ()
29 return 0;