How do I get all the values of a Dictionary as an IList? February 18, 2023 by Tarik Noticed a lot of answer were quite old. This will also work: using System.Linq; dict.Values.ToList();