dbus/mono/Test.cs
Havoc Pennington 93b5a19c9f 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.
2003-06-22 05:53:06 +00:00

12 lines
195 B
C#

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);
}
}