Well to begin with I have very basic understanding of C#'s OOP power however this is what I want:
I have a function that I want to compile to a .dll, as the project I am working on will be more easier to execute given the power of C#. Although I have the function ready, I don;t have the technical knowledge to create a .dll out if it that may be included in a project and the functions called. Also is there a way to show the 'user' of the .dll what function it accepts and what it returns when it get's included in a project (I am sure the intellisense shows the method parameters when the methods are called), but how does the 'user' know what methods are included?
Also is it possible that my .dll's that I create may be used by someone coding in C++/C?
P.S. I did study the MS Documentation but I did not get it exactly. I am currently trying to learn from another documentation as well.
Thanks.