mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 13:40:09 +01:00
* 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.
12 lines
195 B
C#
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);
|
|
}
|
|
}
|