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.
2008-10-17 15:05:07
+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
2008-10-17 15:06:22
+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
2008-10-17 15:35:21