Classes in C#

DreamKid

Member
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 Im 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 Im not familiar with the namespace concept.
Thanks in advance.

Unlike VB, you cant apply "using" to classes, only namespaces.
 
Back
Top