tags:

views:

132

answers:

3
+2  Q: 

C# libraries?

Where can I learn how to use/create C# Libraries?

+1  A: 

Creating a library can be as simple as firing up Visual Studio and creating a class library project. The project will be output as a DLL and can be used in other projects the same way you would use internal libraries.

Jeremy B.
+1  A: 

what kind of libraries are you looking to create?

The best bet for learning is the MSDN website as far as creating them just put all your classes in a project and compile them to a Dll and thats pretty much a library.

Omar Kooheji
+1  A: 

Here is a link that will help you use existing libraries:

http://msdn.microsoft.com/en-gb/netframework/default.aspx

And this one provides a guide to creating them:

http://msdn.microsoft.com/en-us/vcsharp/aa336796.aspx

The MSDN website is generally a good place to start when you're looking for C# stuff

SpaceghostAli