Hi there.
I have a multivalued parameter called of type int called "Person". With that in mind, I have 2 questions:
1. How do I pull the data out programmatically? Basically, I want to do something like this:
foreach (int personId in (List)this.ReportParameters["Person"].Value)
{
myList.Add(personId);
}
I can't quite figure out how to get at the collection and extract the values.
2. Along those same lines, how would I programmatically populate a multivalue parameter?
Thanks, Mike