I have class that wants an IList, but I have a Systems.Collection.IList, coming from an NHibernate quere.
IList
Systems.Collection.IList
I want to create a method th
One way is to use Linq, like list.OfType() or .Cast()
list.OfType()
.Cast()