MingStar.SimUniversity.AI.GameState.this C# (CSharp) Method

this() public method

public this ( int index ) : double
index int
return double
        public double this[int index]
        {
            get { return Scores[index]; }
            set { Scores[index] = value; }
        }