// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // This file provides the IsExternalInit type required for using C# 9 records // in projects targeting .NET Standard 2.1 or earlier. #if !NET5_0_OR_GREATER namespace System.Runtime.CompilerServices { using System.ComponentModel; /// /// Reserved to be used by the compiler for tracking metadata. /// This class should not be used by developers in source code. /// [EditorBrowsable(EditorBrowsableState.Never)] internal static class IsExternalInit { } } #endif