I'm getting 4 errors with the following code, can you tell me how to fix this?
1- A namespace cannot directly contain members such as fields or methods 2- Expected class, delegate, enum, interface, or struct. 3- Type or namespace definition, or end-of-file expected
The code is:
License Seal;
public void Mainform() {}
public MainForm() {}
public enum auth{}
}
{{
Seal = new License();
Seal.ID = "";
Seal.Catch = true;
Seal.Protection = License.Guard.FullScan;
Seal.Initialize();
}
public MainForm.cs();
}}
auth();
InitializeComponent();{
}
License Seal;meant to mean? Your code basically makes no sense as C# at the moment. You haven't got a class declaration, you've got what looks like a filename as a constructor... Basically, you should start again. – Jon Skeet Nov 17 '12 at 19:24{{and}}) – Damien_The_Unbeliever Nov 17 '12 at 19:26