I've got a collection of that type:
IEnumerable<FileInfo> files;
I'm trying to sort the files so that all files with the name 'index.js' will appear at the beginning of the list. I don't mind how the rest of the files are sorted.
What would be the LINQ query for that ?