If all roles are in a column in excel then read the excel into datatable(dt)
Then
dt.AsEnumerable.Select(function(x) x("RolesColumnName").Tostring).ToArray()
This will give the array of all the roles which can be passed in the select multiple items
Cheers