sharee.bike-App/SharedBusinessLogic/CSharp9.cs
2024-04-09 12:53:23 +02:00

14 lines
385 B
C#

// ReSharper disable once CheckNamespace
namespace System.Runtime.CompilerServices
{
#if USCSHARP9
/// <summary>
/// Reserved to be used by the compiler for tracking metadata.
/// This class should not be used by developers in source code.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
internal static class IsExternalInit
{
}
#endif
}