Here is how I insert data in the dictionary
Dictionary<string, Person> dict=new Dictionary();
dict.Add("dev",new Person("John","Skeet"))
dict.Add("code",new Person("Theodor","Bellash"))
dict.Add("chief",new Person("John","Skeet"))
I have a data source typed as Dictionary<string,Person>
and I wonder how can I refer to dict["chief"]
in the RDLC design mode?
I have tried =Fields("chief")!FirstName.Value
and =Fields!FirstName.Value("chief")
whithout success.