DreamKid Posted August 3, 2005 Posted August 3, 2005 In VB.Net, we use "imports Project.NewClass" to link the classes together. How do I do that in C# as I'm not familiar with the namespace concept. Thanks in advance. Quote
Administrators PlausiblyDamp Posted August 3, 2005 Administrators Posted August 3, 2005 using Project.NewClass Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Jaco Posted August 4, 2005 Posted August 4, 2005 In VB.Net, we use "imports Project.NewClass" to link the classes together. How do I do that in C# as I'm not familiar with the namespace concept. Thanks in advance. Unlike VB, you can't apply "using" to classes, only namespaces. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.