I've been editing a source code for an application I'm writing in C #, which uses GTK +.
I have some knowledge of C #, but I did not understand why some variables were written when I mounted the UI in the "drag and drop" with global::
before the names.
See the snippet of code:
private Gtk.VBox vbox2;
private global::Gtk.VBox vbox3;
private global::Gtk.Label tituloLogin;
private global::Gtk.Entry entry1;
private global::Gtk.Entry entry2;
What is this global::
worth? What does it mean?