Im not sure if this should go here, but here it goes.
I would like to know how i can call methods from a .dll if i make one does it have to be made in a spercific language? C#, C++ etc. Is it possible to call mthods from a .dll created in VB.net?
Well im comftable with all 3 langagues so it doesnt really make a diffrence. i just want to know what i need to do to use methods created in them in a .dll form.
Many thanks
EDIT:
Ok i know this involves Win32API, so how can i call it? i just made a test class in C#
So if you can help me understand how to call this im sure ill get used to doing this.
I would like to know how i can call methods from a .dll if i make one does it have to be made in a spercific language? C#, C++ etc. Is it possible to call mthods from a .dll created in VB.net?
Well im comftable with all 3 langagues so it doesnt really make a diffrence. i just want to know what i need to do to use methods created in them in a .dll form.
Many thanks
EDIT:
Ok i know this involves Win32API, so how can i call it? i just made a test class in C#
Code:
namespace DL
{
public class Initialize
{
public static string Add(string hello)
{
return (hello);
}
}
}
So if you can help me understand how to call this im sure ill get used to doing this.