mono på windows
Jeg har installeret mono på windows og der var ikke nogle fejl undervejs, men når jeg forsøger at bygge en lille testapplikation (se nedenfor), så kommer følgende fejl:This application has failed to start because libgdk-win32-2.0-0.dll as not found. Re-installing the application may fix this problem
(sidstnævnte har jeg forsøgt)
Kode:
using Gtk;
using GtkSharp;
using System;
class Hello {
static void Main()
{
Application.Init ();
Window window = new Window ("helloworld");
window.Show();
Application.Run ();
}
}
