Files
BinaryObjectScanner/BinaryObjectScanner/ExtensionAttribute.cs
2025-09-21 18:55:55 -04:00

10 lines
224 B
C#

#if NET20
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
internal sealed class ExtensionAttribute : Attribute {}
}
#endif