Reputation: 18096
Please consider the following code:
class Student
{
}
enum StudentType
{
}
static void foo(IDictionary<StudentType, IList<Student>> students)
{
}
static void Main(string[] args)
{
Dictionary<StudentType, List<Student>> studentDict =
new Dictionary<StudentType, List<Student>>();
foo(studentDict);
...
}
There is the error:
error CS1503: Argument '1': cannot convert from 'System.Collections.Generic.Dictionary>' to 'System.Collections.Generic.IDictionary>'
Is there any way to call foo function?
Upvotes: 5
Views: 2258
Reputation: 70122
You could use the Linq ToDictionary method to create a new dictionary where the value has the correct type:
static void Main(string[] args)
{
Dictionary<StudentType, List<Student>> studentDict = new Dictionary<StudentType, List<Student>>();
var dicTwo = studentDict.ToDictionary(item => item.Key, item => (IList<Student>)item.Value);
foo(dicTwo);
}
Upvotes: 6
Reputation: 1481
change the creation of studentDict to be:
Dictionary<StudentType, IList<Student>> studentDict = new Dictionary<StudentType, IList<Student>>();
Upvotes: 0
Reputation: 391276
You will have build a new dictionary with the right types, copying the data from the old one into the new one.
Or, you could change the original dictionary to be of the right type to begin with.
Either way, no, you can't cast the dictionary.
The reason for this limitation is as follows:
Upvotes: 3