summaryrefslogtreecommitdiffstats
path: root/mono/Test.cs
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-06-22 05:53:06 +0000
committerHavoc Pennington <hp@redhat.com>2003-06-22 05:53:06 +0000
commit93b5a19c9f0979b5f227760af2ce5a0d076521f9 (patch)
tree1704ae1cbebdfacc0ca5d7c98e9c90bf55b27fd3 /mono/Test.cs
parent8e99e853a7abbb5344240c35b66853eeaedca48e (diff)
2003-06-22 Havoc Pennington <hp@pobox.com>
* 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.
Diffstat (limited to 'mono/Test.cs')
-rw-r--r--mono/Test.cs12
1 files changed, 12 insertions, 0 deletions
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);
+ }
+}