I just installed Xamarin Monodevelop on Mac OSX, I created a GTK # project where I have a very main window that I havenโt even touched. This is the error she gives me on Build();
Error CS0103: The name 'Build' does not exist in the current context
using System; using Gtk; public partial class MainWindow: Gtk.Window { public MainWindow () : base (Gtk.WindowType.Toplevel) { Build (); } protected void OnDeleteEvent (object sender, DeleteEventArgs a) { Application.Quit (); a.RetVal = true; } }
source share