Adding Description to each Tuple object?
问题 I have a tuple of : var a = new Tuple<int, int, int>(1,2,3); My question : is there any way (by /// remark or something else ), to add a short description to the object types ? the first 3 int's can be confusing.... How can I know that item1 is refering to "age" and not to "Number of fingers" ? 回答1: No. The Tuple class is only intended to be used internally within a method; if you intend to make the data available publicly, you should define a class or struct with properties for each of your