Classes in C#

DreamKid

Newcomer
Joined
Apr 12, 2004
Messages
17
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.
 
DreamKid said:
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.
 
Back
Top