I have a bindinglist of type ISomething. That I need to filter with a dynamic linq query....BindingList<ISomething> myList;
var myType = typeof(MyClass); (MyClass a class that implements ISomething)
...I need to be able to cast to a bindinglist of myClass...