AdvancedLauncher.UI.Pages.GalleryViewModel.RemoveAt C# (CSharp) Method

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void
        public void RemoveAt(int index)
        {
            if (this.IsDataLoaded && index < this.Items.Count)
                this.Items.RemoveAt(index);
        }