6
votes
8answers
546 views
simple calculation, different results in c# and delphi
Hello,
The question is, why do these code snippets give different results?
private void InitializeOther()
{
double d1, d2, d3;
int i1;
d1 = 4.271343859532459e+18;
d …
0
votes
tStringList passing in C# to Delphi DLL
As Hemant Jangid said, you should easily be able to do this by compiling your code as a .NET dll and then referring to that assembly in your c# project.
Of course, you'll only be able to do …
