I\'ve created a new Class Library in C# and want to use it in one of my other C# projects - how do I do this?
Right Click on Project--> Add--> New Project-->click on Class Library.
Now your class library is created as class1.cs
Right Click on References(of your program/console app)
-->Add Reference-->classLibrary1(whatever you named) Now mention "using ClassLibrary1" in your program/console app
Now u can easily call the method/property in your console app