MvvmFramework.Samples.Uwp.Repositories.TodoListItemsRepository.RemoveTodoListItem C# (CSharp) 메소드

RemoveTodoListItem() 공개 메소드

Removes the specified item from the todo list.
public RemoveTodoListItem ( string id ) : void
id string The ID of the todo item that is to be removed.
리턴 void
        public void RemoveTodoListItem(string id) => TodoListItemsRepository.todoListItems.Remove(this.GetTodoListItem(id));