This is probably a pretty obvious question, but how would I go about creating a List that has multiple parameters without creating a class.
List
Example:
If you are using .NET 4.0 you can use a Tuple.
List> list;
For older versions of .NET you have to create a custom class (unless you are lucky enough to be able to find a class that fits your needs in the base class library).