Gtk# (gtk-sharp) is a .NET language binding for the GTK toolkit and assorted GNOME libraries. Gtk# is free software, licensed under the GNU LGPL. The target is the 2.6 platform.
Building & Installing Gtk#:
./configure
make
make install
You may want to consider using configure's prefix option to install Gtk# using the same prefix as Mono. That way all of your .NET assemblies get placed in the same place, and you don't need to do any extra "configuring" to make it so mono (and mint) can find your assemblies. In other words, doing something like:
./configure --prefix=/the/path/that/was/used/for/mono
make
make install
(Of course, replace "/the/path/that/was/used/for/mono" with whatever path which was used for Mono. This might have been "/usr", "/usr/local", or something similar.)
If you are compiling from SVN, you will need libtool and the auto* tools and will need to replace the configure above with bootstrap for the 2.5.x version or bootstrap-2.4 for the 1.9.x version.
Product's homepage