mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-04-30 10:50:09 +00:00
Even though there are relatively few collections extensions right now, there is a relatively high chance that other extension will be used in the future.
10 lines
225 B
C#
10 lines
225 B
C#
#if NET20
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
|
|
internal sealed class ExtensionAttribute : Attribute { }
|
|
}
|
|
|
|
#endif
|