Debug an application

You are debugging an application for a web shop and are inspecting a lot of Order classes. What can you do to make your debugging easier?

Use the #line compiler directive to make sure you can find the correct location when an exception occurs.
Use the DebuggerDisplayAttribute on the Order class.
Use the ConditionalAttribute on the Order class.
Override ToString on the Order class.