Wie kann eine Dynamik als Generikum verwendet werden?
Wie kann ich eine Dynamik als Generikum verwenden?
Diese
<code>var x = something not strongly typed; callFunction<x>(); </code>
und das
<code>dynamic x = something not strongly typed; callFunction<x>(); </code>
beide erzeugen diesen Fehler
<code>Error 1 The type or namespace name 'x' could not be found (are you missing a using directive or an assembly reference?) </code>
Was kann ich tun?x
um es so legitim zu machen, dass es in ... verwendet werden kann<x>
?