■ C# 10.0 での新機能
・汎用属性 (Generic attributes)
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/generic-attributes
属性クラスでジェネリクスが使える。
[Sample<int>] void Method() {; } class SampleAttribute<T> : System.Attribute { }