If this is an option, you can transfer this code to a function and apply the [DebuggerStepThrough] attribute to this function so that it is always skipped during debugging
Same:
using System.Diagnostics;
namespace MyNamespace
{
public class Utilities
{
[DebuggerStepThrough]
public ThisIsAVeryLongMethod()
{
}
}
}
, ,
ShortMethod1();
ThisIsAVeryLongMethod();
ShortMethod2();