Im trying to convert some Delphi code to c# and I\'ve come across a problem...
In Delphi I\'ve decalared a new type
Type TData = Array of Extended >
The closest you can get in C# is
using DataEntry = System.Double;
Put this at the top of each file.