From 93b5a19c9f0979b5f227760af2ce5a0d076521f9 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sun, 22 Jun 2003 05:53:06 +0000 Subject: 2003-06-22 Havoc Pennington * mono/*, gcj/*, configure.in, Makefile.am: Check in makefiles and subdirs for mono and gcj bindings. Neither binding actually exists, just trying to get through all the build and other boring bits. --- mono/Test.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mono/Test.cs (limited to 'mono/Test.cs') diff --git a/mono/Test.cs b/mono/Test.cs new file mode 100644 index 00000000..ffe7d0a6 --- /dev/null +++ b/mono/Test.cs @@ -0,0 +1,12 @@ + +using System; + +class Test { + static void Main() { + DBus.Message m; + + m = new DBus.Message ("org.freedesktop.Foo", null); + + Console.WriteLine ("Message name is {0}\n", m.Name); + } +} -- cgit