Debugging in TLD
There's currently no built-in debugger in TLD, however the Visual Studio debugger can be used either by calling the DebuggerUtils.Launch
method or by attaching to the process via Visual Studio, as shown bellow:
public virtual void RefreshMaterialFertigCsnrDataSource()
{
DebuggerUtils.Launch(); // Starting debugging
dgMaterialFertigCsnr.DataSource = BusObj.GetFertigCsnrTable();
}
Debugging with Visual Studio:


Last updated