D Dave Jun 2, 2005 #2 Which development tools do you have, if any? (i.e. Visual Studio .NET 2003, Web Matrix, Notepad, etc.)
Which development tools do you have, if any? (i.e. Visual Studio .NET 2003, Web Matrix, Notepad, etc.)
G Guest Jun 2, 2005 #3 If you create a Common Library (DLL) you just add it to your references. and put into the uses directive space and you should be good to go
If you create a Common Library (DLL) you just add it to your references. and put into the uses directive space and you should be good to go
O Oscar Thornell Jun 2, 2005 #4 Save code in file "ClassLibrary1.cs" -------------------------------------- using System; namespace ClassLibrary1 { public class Class1 { public int AddIntegers(int a, int b) { return a+b; } } } Compile with:
Save code in file "ClassLibrary1.cs" -------------------------------------- using System; namespace ClassLibrary1 { public class Class1 { public int AddIntegers(int a, int b) { return a+b; } } } Compile with: