C # libraries?

Where can I find out how to use / create C # libraries?

+3
source share
3 answers

Here is a link to help you use existing libraries:

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

And this gives guidance on how to create them:

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

The MSDN website is usually a good place to start when you are looking for C # stuff.

+3
source

Creating a library can be as simple as starting Visual Studio and creating a class library project. The project will be displayed as a DLL and can be used in other projects just as you would use internal libraries.

+2
source

?

- MSDN, Dll, .

+2

Source: https://habr.com/ru/post/1698405/


All Articles