AI_Project_3.Quarter.removeClass C# (CSharp) Method

removeClass() public method

Removes a class from the list of classes by index
public removeClass ( int index ) : void
index int int
return void
        public void removeClass(int index)
        {
            classes.RemoveAt(index);
            OnPropertyChanged("classes");
        }

Same methods

Quarter::removeClass ( String displayString ) : void