How can I to include classes from another project?

  • Thread starter Thread starter Carlos Villaseñor M.
  • Start date Start date
C

Carlos Villaseñor M.

Hi every body

I still new in C#, now I developing an application (console application) but
I've downloaded a project which I need some classes, how can I to include
thses classes y my project?

I appreciate some help

Regards
Carlos Villaseñor M.
 
Carlos Villaseñor M. said:
Hi every body

I still new in C#, now I developing an application (console application)
but
I've downloaded a project which I need some classes, how can I to include
thses classes y my project?

I appreciate some help

Regards
Carlos Villaseñor M.

You need to set up a reference to the other assembly using the references
folder in the Visual Studio Solution explorer.

If you have another project rather than another binary set up a project
reference, if you only have the binary set up a file based one by browsing
for the assembly

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk?
 
Back
Top