File: src\System\Diagnostics\EditAndContinueHelper.cs
Web Access
Project: src\src\coreclr\System.Private.CoreLib\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.
 
/*=============================================================================
**
**
**
** Purpose: Helper for EditAndContinue
**
**
=============================================================================*/
 
namespace System.Diagnostics
{
    internal sealed class EditAndContinueHelper
    {
#pragma warning disable CA1823, 169, 414, IDE0044 // field is not used from managed.
        private object? _objectReference;
#pragma warning restore CA1823, 169, 414, IDE0044
    }
}