I can restrict generics to a specify type using the \"Where\" clause such as:
public void foo() where TTypeA : class, A
How d
Something like this?
public void foo() where TTypeA : class where TTypeB : class