If a method is to return an IList<Customer> type, is there a way to have VS default to pop "List<Customer>" when I start to type "return new " ?
The thing I'm trying to gain is to in the end is to have a type quickly made right off of the return type, but it's not as easy as it would be if it just returned List<Customer> instead (which I've been told not to do for more flexibility) :(