c# - Two different generic types as result and parameter -


with method can return unknown data type :

private t call<t>(uri uri) t:new()  { } 

but how pass unknown data type (not same) parameter :

private t call<t>(uri uri, ??? parameters) t:new()  { } 

add generic type parameter:

private t call<t, tother>(uri uri, tother parameters) t:new()  { } 

Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

java - Getting exception in JDBC thin driver -