Skip to content
jdubs edited this page Oct 21, 2016 · 1 revision

Overview

Used for debugging purposes. When active configuration is set to debug and document action uses the compiled library this method will force the compiler to break.

Source Code

internal static void Break()
{
if DEBUG
	System.Diagnostics.Debugger.Break();
endif
}

Clone this wiki locally