G
Guest
Is it possible to include a function from another file, so that I don't have
to retype the code everytime?
to retype the code everytime?
Tim Wilson said:You can build a class library and then reference the assembly in any
projects that require the functionality. Is that what you were after?
Camper said:That sounds like it. How would I do it?
Jon Skeet said:Create a new class library project in VS.NET. Then add a reference to
the project in the "Add Reference" dialog (right click on the
"References" item in solution explorer, and select "Add Reference").
Jon