C#のジェネリクス、T Foo<T> {...}というのがあったときにFoo<int?>はFoo<int>と同じ意味になる。えええええー。
https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references#generics “If the type argument for T is a value type, T? references the same value type, T.”
where T structとすればいけるんだけど、そうすると値型と参照型の両方を受け取れるメソッドが作れなくなる。型変数が1つならオーバーロードさせればよいんだけど、複数あると爆発する。
- replies
- 1
- announces
- 0
- likes
- 0