i have method that its signature looks like
public object LoadCache(string cacheName,Type returnType)
and from this method another method is called which signature like this
BBCacheProvider.BbCacheProvider.GetCache<T>(string cacheName);
is there any way to send returnType parameter as T in the method?
i believe that there is no way to do that! but there must be a way around it!