Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Created November 19, 2018 16:11
Show Gist options
  • Save alexlarkou/30f0127759e8159c95c824d24cd3f315 to your computer and use it in GitHub Desktop.
Save alexlarkou/30f0127759e8159c95c824d24cd3f315 to your computer and use it in GitHub Desktop.
// c#
List<Student> studentsInAllSchools = studentsInAllSchools.ToList();
// java
List<Student> studentsInAllSchoolsList = studentsInAllSchools.collect(Collectors.toList());
// or, if you specifically want an arrayList..
List<Student> studentsInAllSchoolsArrayList = studentsInAllSchools.collect(Collectors.toCollection(ArrayList::new));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment