1
vote
1answer
102 views
Upcasting to a generic object from system.object
Hello!
I have some simple code which demonstrates my problem:
private void InitializeOther()
{
List<Foo> list = new List<Foo>();
Casting(list);
}
//in the " …
6
votes
8answers
536 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 …
1
vote
1answer
80 views
new .net floating point types for x64?
Hello!
Does anybody know if there are any? I would be interested in a .net floating point type with the range of a double (or greater) combined with the precision of a decimal (or greater). …
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 …
