mscorlib(4.0.0.0) API with additions
ITuple.cs
2 {
4  public interface ITuple
5  {
8  int Length
9  {
10  get;
11  }
12 
16  object this[int index]
17  {
18  get;
19  }
20  }
21 }
int Length
Gets the number of elements in this Tuple instance.
Definition: ITuple.cs:9
Defines a general-purpose Tuple implementation that allows acccess to Tuple instance members without ...
Definition: ITuple.cs:4