I do not know if this is even possible, but I am using a LINQ query and storing my object results in an implict variable or var like this:
var List= from Person in GlobalVariables.Person List where Person.TeamID == CurrTeam select Person;
What I am asking for is there any way to make an array of vars? (Meaning each row will have another array of objects stored in it)
When I try it it does not recognize var as a valid type. Any way on how to do this or an alternative?
var
. Please show us what you're trying to write? – SLaks