Ich hab eingentlich ein anderes Problem weil ich eine C#
DLL Datei programmiert hab und
in ein Delphi "öffnen" möcht!
Ich wollt erst mal schau ob ich in der
DLL Datei was falsch programmiert hab!
In Delphi hab ich schon eine
DLL programmiert aber in C# nicht!
Hab mal hier ein Bsp.:
Code:
using System;
namespace Projekt8
{
public class Class1
{
public Class1()
{
}
public static int tex(int t)
{
t += 1;
return t;
}
}
}
und hier Delphi:
Delphi-Quellcode:
unit Unit3;
interface
...
function tex(t:integer):integer;
stdcall;
external '
Projekt8.dll';
implementation
...
procedure TForm3.Button1Click(Sender: TObject);
begin
edit1.Text:=Inttostr(tex(strtoint(edit1.Text)));
end;
end.
(ist bloß ein test)
Ich weiss auch nicht ob das so richtig ist mit dem Aurufen von der
DLL Datei von C# und ob es in C# eine exports-Klausel gibt?