10 lines
323 B
C#
10 lines
323 B
C#
// ReSharper disable once CheckNamespace
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
// Enables extension methods in assembly that targets .NET 2.0
|
|
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Method)]
|
|
internal sealed class ExtensionAttribute : Attribute
|
|
{
|
|
}
|
|
} |