PurplePen.VariationInfo.VariationPath.this C# (CSharp) Method

this() public method

public this ( int i ) : Id
i int
return Id
            public Id<CourseControl> this[int i]
            {
                get
                {
                    if (i < 0 || i >= Count)
                        throw new ArgumentOutOfRangeException();
                    return choices[i];
                }
            }