I'm really struggling with this one. I need a generic list parameter for my Get method, but it needs to be optional. I just did this:
public dynamic Get(List <long> ManufacturerIDs = null)
Unfortunately on runtime i get the error:
Optional parameter 'ManufacturerIDs' is not supported by 'FormatterParameterBinding'.
How to get a generic list as an optional parameter here?