This is a snippet of global.asax.cs.
.
.
.
.
namespace AMChat
{
public class Global : System.Web.HttpApplication
{
private System.ComponentModel.IContainer components = null;
public static AMChat.[B][U]ChatEngine[/U][/B].IChatEngine Engine = new AMChat.[B][U]ChatEngine[/U][/B].ChatEngine();
.
.
.
.
I have a folder 'AMChat' in which there is another folder 'ChatEngine' which includes two .cs files - ChatEngine.cs and IChatEngine.cs
I have included that folder into the project named 'AMChat' but still I get an error that The type or namespace name 'ChatEngine' does not exist in the namespace 'AMChat' (are you missing an assembly reference?)
Please help !!!
:confused: