sharee.bike-App/TINKLib/CSharp9.cs

16 lines
415 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.ComponentModel;
// ReSharper disable once CheckNamespace
namespace System.Runtime.CompilerServices
{
2021-07-12 19:30:14 +02:00
#if USCSHARP9
2021-05-13 20:03:07 +02:00
/// <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
{
}
2021-07-12 19:30:14 +02:00
#endif
2021-05-13 20:03:07 +02:00
}