<span style="color: rgb(96, 96, 96);"> 1:</span> <span style="color: rgb(0, 128, 0);">// codesnippet:ADB0358E-3BD1-11DE-B2D2-764056D89593</span>
<span style="color: rgb(96, 96, 96);"> 2:</span> <span style="color: rgb(0, 0, 255);">public</span> <span style="color: rgb(0, 0, 255);">static</span> BuildModeEnum BuildMode
<span style="color: rgb(96, 96, 96);"> 3:</span> {
<span style="color: rgb(96, 96, 96);"> 4:</span> get
<span style="color: rgb(96, 96, 96);"> 5:</span> {
<span style="color: rgb(96, 96, 96);"> 6:</span> <span style="color: rgb(204, 102, 51);">#if</span> (DEBUG)
<span style="color: rgb(96, 96, 96);"> 7:</span> <span style="color: rgb(0, 0, 255);">return</span> BuildModeEnum.Debug;
<span style="color: rgb(96, 96, 96);"> 8:</span> <span style="color: rgb(204, 102, 51);">#else</span>
<span style="color: rgb(96, 96, 96);"> 9:</span> <span style="color: rgb(0, 0, 255);">return</span> BuildModeEnum.Release;
<span style="color: rgb(96, 96, 96);"> 10:</span> <span style="color: rgb(204, 102, 51);">#endif</span>
<span style="color: rgb(96, 96, 96);"> 11:</span> }
<span style="color: rgb(96, 96, 96);"> 12:</span> }