Hi,
I'm a programmer who has never really used .dll files. Of cause, when I need 3rd party software, such as a graphics library, a library to help me create graphs etc. I do add the references/ddl files to my program and use them in my code.
Also, it seems like you can use .dll for a lot of different things, so I'd like the topic to concentrate on C#.
Right now I am working on a sanitizing library(?) (I think that is the correct term), which will be full of relevant methods that can sanitize variables in all sorts of different ways.
What I want to know is:
would there be any advantage to:
1) Write the methods to class library -> compile/build it -> add the library as a reference to the program - which would need to sanitize some variables ?
Or would it be exactly the same if I where to:
2) Create a new SanitizeClass in the program -> add all the sanitize methods -> call the methods from the SanitizeClass in the different classes in the program that needs to sanitize variables
In general, I also want to know when it is an advantage to use compiled class libraries. I'm thinking of speed, security, all of it.
Could anyone enlightenment me? :)