G
GingerDeafMan
Hi,
This is ok:
using System.Windows.Forms;
private System.Windows.Form Form1;
(the private declaration is in a class, of course)
As is:
using System.Windows.Forms;
private Form Form1;
But the compiler does not like this:
using System.Windows;
private Forms.Form Form1;
Why is this and what are the rules?
Cheers,
Paul.
This is ok:
using System.Windows.Forms;
private System.Windows.Form Form1;
(the private declaration is in a class, of course)
As is:
using System.Windows.Forms;
private Form Form1;
But the compiler does not like this:
using System.Windows;
private Forms.Form Form1;
Why is this and what are the rules?
Cheers,
Paul.