Hi,
I want to fake a generic method like below:
public void foo<T>(Object params) where T : SomeType {}
I want to be able to check the actual type for T in my faked method. Is this possible?