File: System\Diagnostics\DebugAnnotations.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.CoreLib\src\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.Diagnostics
{
    /// <summary>
    /// Annotations used by debugger
    /// </summary>
    public static class DebugAnnotations
    {
        /// <summary>
        /// Informs debugger that previous line contains code that debugger needs to dive deeper inside.
        /// </summary>
        public static void PreviousCallContainsDebuggerStepInCode()
        {
            // This is a marker method and has no code in method body
        }
    }
}