#include like in c++

  • Thread starter Thread starter Dakkar
  • Start date Start date
D

Dakkar

i want to add several cs files to my c# project does visual c# 2005
see everypage automaticaly or do i have to use a method like #include
if i have
what is the usage of it?

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
Dakkar said:
i want to add several cs files to my c# project does visual c# 2005
see everypage automaticaly or do i have to use a method like #include
if i have
what is the usage of it?

C# doesn't need include. Anything you define in one .cs file is
automatically available to all the other .cs files in the same project.

In other words, the keyword here is "project".
 
Back
Top