Tuples

Tuples store two or more values in one structure. The syntax is easier than arrays or structures and they can be build easier:

(string Accessory, string Occlusion) myTuple = (Accessory: "This", Occlusion: "My Boat");
if (myTuple.Accessory == "This")
    Debug.Log("Yes.");
if (myTuple.Occlusion == "My Boat")
    Debug.Log("That's my boat!");

There is an old version of building tuples, but it sux:

// This or something equally annoying.
Tuple<string, string> myTuple = Tuple<string, string>() "This", "My Boat";