以下は私の質問を説明するための簡単なコードです。この明らかに不要なボクシング/アンボクシングを回避する方法はありますか?
public class TestClass<T>
{
public T TestMethod()
{
if (typeof(T) == typeof(bool))
{
return true; // doesn't work
return (T)(object)true; // works, but any way to avoid this?
}
return default(T);
}
}