mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-07 01:58:46 +00:00
22 lines
504 B
C#
22 lines
504 B
C#
|
#if !NET5
|
|||
|
#pragma warning disable
|
|||
|
// ReSharper disable once UnusedType.Global
|
|||
|
|
|||
|
namespace System.Runtime.CompilerServices
|
|||
|
{
|
|||
|
using Diagnostics;
|
|||
|
using Diagnostics.CodeAnalysis;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Reserved to be used by the compiler for tracking metadata.
|
|||
|
/// This class should not be used by developers in source code.
|
|||
|
/// </summary>
|
|||
|
[ExcludeFromCodeCoverage, DebuggerNonUserCode]
|
|||
|
#endif
|
|||
|
internal static class IsExternalInit
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#pragma warning restore
|