Problems with dll's in C#
-
Hello, Problem 1: I wonder if you could use (how) dll made in delphi in C#. Problem 2: How do you make dll in C# and use this dll in Delphi, C++ ... Is this posible? I'm made dll with delphi and open it with Dependency walker. I can see my functions. But if I made "dll" with C# (you know: New project; ClassLibrary...), I can't see nothing. So I think that this dll is not real dll. How can I make "real" dll in C# : you know like dll in delphi function Something(a, b : integer) : integer; stdcall; begin Result:= a+ b; end; exports Something; Thank you for answers, have a nice day, Anze
-
Hello, Problem 1: I wonder if you could use (how) dll made in delphi in C#. Problem 2: How do you make dll in C# and use this dll in Delphi, C++ ... Is this posible? I'm made dll with delphi and open it with Dependency walker. I can see my functions. But if I made "dll" with C# (you know: New project; ClassLibrary...), I can't see nothing. So I think that this dll is not real dll. How can I make "real" dll in C# : you know like dll in delphi function Something(a, b : integer) : integer; stdcall; begin Result:= a+ b; end; exports Something; Thank you for answers, have a nice day, Anze
This may help http://www.csharphelp.com/archives/archive52.html All I need is a roadmap and then I might be able to find a clue.
-
This may help http://www.csharphelp.com/archives/archive52.html All I need is a roadmap and then I might be able to find a clue.