sharee.bike-App/SharedBusinessLogic/CSharp9.cs

14 lines
385 B
C#
Raw Permalink Normal View History

2022-08-30 15:42:25 +02:00
// ReSharper disable once CheckNamespace
2021-05-13 20:03:07 +02:00
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
}