I\'m an escalation engineer on a product which use both C# and Delphi 2006 code.
In most cases C# issues are debugged with WinDbg and Delphi 2006 issues with EurekaL
The latest version of cv2pdb tool can convert the DBGs made with map2dbg into PDB files.
So, if you've previously made your DBGs like this: map2dbg App.exe
Just add this command afterwards: cv2pdb -s. App.exe
-s. parameter is necessary to separate the method names from the class names with a point.
cv2pdb built for Win32 on the current sources can to downloaded from here.