The problem I see with the first example is there is no way to determine from the code itself if my variable is meant to be passed to that method. That method would accept any generic IList of strings. Someone looking at this code would have to make a determination if that variable could be passed to that method and they could be wrong. This kind of code is not explicit enough for me.
The second example there is no ambiguity. The method is meant to be working with a particular type inherited from a closed generic. I know what it is meant for and I know what the variable is.
Additionally, if you create the inherited class like the second example you can hang methods off of it to operate on the collection. I find that without this there are a lot of static worker methods being created to manipulate these generic lists. I find that kind of un-oopy and, as I already stated, there is no way to ensure these methods are operating on the type of data they actually expect.