Vocaluxe.Lib.Song.CLine.DeleteNote C# (CSharp) Метод

DeleteNote() публичный Метод

public DeleteNote ( int Index ) : bool
Index int
Результат bool
        public bool DeleteNote(int Index)
        {
            if (_Notes.Count > Index)
            {
                _Notes.RemoveAt(Index);
                updateMinMaxBeat();
                return true;
            }
            return false;
        }