help

  • Thread starter Thread starter khawar
  • Start date Start date
K

khawar

in C++ and asp you can use include blah.blah
how do you do that in C# and asp.net
i have created a class and saved it as a blah.cs file
i want to be able to use something similar to include
blah.cs in other *.cs files where i might use objects
defined in blah.cs
help
 
the keyword is using, at the top of your class file (outside the class of
course)

using blah.blah;

where blah.blah is the namespace to import
 
Back
Top