AdvancedLauncher.UI.Pages.GalleryViewModel.RemoveAt C# (CSharp) Méthode

RemoveAt() public méthode

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