mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
19 lines
598 B
C#
19 lines
598 B
C#
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
// ReSharper disable CheckNamespace
|
|
namespace System.Runtime.CompilerServices;
|
|
|
|
/// <summary>
|
|
/// Reserved to be used by the compiler for tracking metadata.
|
|
/// This class should not be used by developers in source code.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Copied from .net source code, for support of init property accessors in netstandard2.0.
|
|
/// </remarks>
|
|
[ExcludeFromCodeCoverage]
|
|
[DebuggerNonUserCode]
|
|
[EditorBrowsable (EditorBrowsableState.Never)]
|
|
public static class IsExternalInit;
|