ダイナミックをジェネリックとして使用するにはどうすればよいですか?
これ
var x = something not strongly typed;
callFunction<x>();
この
dynamic x = something not strongly typed;
callFunction<x>();
どちらもこのエラーを生成します
Error 1 The type or namespace name 'x'
could not be found (are you missing a using directive or an assembly reference?)
x
で使用できるほど正当なものにするにはどうすればよい<x>
ですか?