繁体   English   中英

如何在 c# 条件下从 object 列表中删除所有下一个元素

[英]How to remove all next elements from list of object on condition in c#

我有一个对象列表

public class Card
{
    public int Id { get; set; }
    public double Price { get; set; }
    public string Name{ get; set; }
}

当条件匹配时如何从列表中删除所有下一个元素 -

if(object1.Price== 0)
{
  //remove all next elements from list
}

我想将列表从 0 保持到匹配 position 就像如果价格在索引 5 处为零,则取 0 到 5 个元素。

您可以使用TakeWhileSelect的组合,例如:

var lst = new List<Card>()      {
     new Card() { Price = 2 },
     new Card() { Price = 1 },
     new Card() { Price = 0 },
     new Card() { Price = -1 },
     new Card() { Price = -2 },         
};
var found = false;      
var items = lst.TakeWhile(x => !found).Select(x => 
{
    if (x.Price == 0)
        found = true;
    return x;
});

这导致价格为 2、1、0 的项目被保留,而 -1 和 -2 被删除。

请参阅此小提琴进行测试。

如果您使用List<T>其中TCard您可以使用List<T>.FindIndex来获取与谓词匹配的第一个元素的索引并获取列表的范围:

List<Card> cards = new List<Card> { new Card {Id = 1, Price = 1.0, Name = "Ace" }, 
new Card {Id = 2, Price = 0.0, Name="Two" }};
Predicate<Card> test1 = a => a.Price == 1.0;
Predicate<Card> test2 = b => b.Price == 0.0;
//You can also do something like this:
Predicate<Card> test3 = c => c.Price == 1.0 && c.Id == 1;


Console.WriteLine(GetCardRange(cards, test1).Count); //Prints 1
Console.WriteLine(GetCardRange(cards, test2).Count); //Prints 2
Console.WriteLine(GetCardRange(cards, test3).Count); //Prints 1

//or shorthand without declaring a Predicate:
Console.WriteLine(GetCardRange(cards, (a) => a.Price == 0.0).Count); //Prints 2


//Method accepts a predicate so you can pass in different
//types of condition(s)
public List<Card> GetCardRange(List<Card> cards, Predicate<Card> p)
{
    int index = cards.FindIndex(p);
    //if no card is found, either return the whole list 
    //or change to return null or empty list
    return index == -1 ? cards : 
       cards.GetRange(0, index + 1);
}

public class Card
{
    public int Id { get; set; }
    public double Price { get; set; }
    public string Name{ get; set; }
} 

如何显示列表中的所有所需元素<object>到控制台 (C#)<div id="text_translate"><p> 所以我正在制作一个用户可以用来观看电影、添加电影和删除电影的菜单。 现在我已经完成了菜单,如果用户输入的是数字 1,它应该在另一个屏幕上显示该电影的电影名称、年份、导演和摘要。 我有一个 foreach 循环,我正在使用显示特定电影的标题、年份、导演和摘要,但是当我运行我的程序时,它只显示标题和年份,仅此而已。 如何在控制台中同时显示所有 4 个? 代码如下。</p><pre> using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace MovieLibrary { // Should contain data: an address and list of movie objects. // MUST include a dynamic 'MENU' of MOVIES public class Library { // Fields private string _directory = "../../output/"; private string _file = "Movies.txt"; private List&lt;Movie&gt; _movies; public Library() { _movies = new List&lt;Movie&gt;(); Load(); bool menuRunning = true; while (menuRunning) { Console.WriteLine("Pick a number. Any number."); string userOption = Console.ReadLine(); while (string.IsNullOrWhiteSpace(userOption)) { Console.WriteLine("Please do not leave this blank."); Console.WriteLine("Pick a number. Any number."); userOption = Console.ReadLine(); } if (userOption == "1") { string montyTitle; int montyYear; string montyDirector; string montySummary; foreach (Movie movie in _movies) { if (movie.Title == "Monty Python and the Holy Grail") { montyTitle = movie.Title; Console.WriteLine("Title: {0}", montyTitle); } if (movie.Year == 1975) { montyYear = movie.Year; Console.WriteLine("Year: {0}", montyYear); } if (movie.Director == "Terry Gilliam &amp; Terry Jones") { montyDirector = movie.Director; Console.WriteLine("Director: {0}", montyDirector); } if (movie.Summary == "Monty Python and the Holy Grail is about a ragtag group, the knights of the round table, assembled by the Great King Arthur to embark on a quest given by God to find the Holy Grail.") { montySummary = movie.Summary; Console.WriteLine("Summary: {0}\r\n", montySummary); } } } else if (userOption == "2") { // RE } else if (userOption == "3") { // Alien } else if (userOption == "4") { // DP } else if (userOption == "5") { // The Avengers } else if (userOption == "6") { // Zombieland } else if (userOption == "7") { // BTLC } else if (userOption == "8") { // The Thing } else if (userOption == "9") { // CITW } } } //Loads the text file private void Load() { using (StreamReader sr = new StreamReader(_directory + _file)) { string text; while ((text = sr.ReadLine()).= null) { string[] contents = text:Split(';'), Movie newLibrary = new Movie(contents[0]. int,Parse(contents[1]), contents[2]; contents[3]). _movies;Add(newLibrary). } } } // Allows the user to view the list of movies private void View() { Console;Clear(). foreach (Movie movie in _movies) { Console.WriteLine($"{movie,Title.-10}{"\n" + movie,Year.-10}{"\n" + movie,Director.-10}{"\n" + movie,Summary + "\r\n";-10}"); } } } // Allows the user to add any new movies they would like to the list of movies in the text file /*public static void Add() { } // Allows the user to remove any movies they would like from the text file public static void Remove() { }*/ }</pre></div></object>

[英]How To Display All Desired Elements From A List<Object> To The Console (C#)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何从C#中的列表中删除对象 C#:从条件列表中删除项目 如何使用条件从列表中删除元素 如何显示列表中的所有所需元素<object>到控制台 (C#)<div id="text_translate"><p> 所以我正在制作一个用户可以用来观看电影、添加电影和删除电影的菜单。 现在我已经完成了菜单,如果用户输入的是数字 1,它应该在另一个屏幕上显示该电影的电影名称、年份、导演和摘要。 我有一个 foreach 循环,我正在使用显示特定电影的标题、年份、导演和摘要,但是当我运行我的程序时,它只显示标题和年份,仅此而已。 如何在控制台中同时显示所有 4 个? 代码如下。</p><pre> using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace MovieLibrary { // Should contain data: an address and list of movie objects. // MUST include a dynamic 'MENU' of MOVIES public class Library { // Fields private string _directory = "../../output/"; private string _file = "Movies.txt"; private List&lt;Movie&gt; _movies; public Library() { _movies = new List&lt;Movie&gt;(); Load(); bool menuRunning = true; while (menuRunning) { Console.WriteLine("Pick a number. Any number."); string userOption = Console.ReadLine(); while (string.IsNullOrWhiteSpace(userOption)) { Console.WriteLine("Please do not leave this blank."); Console.WriteLine("Pick a number. Any number."); userOption = Console.ReadLine(); } if (userOption == "1") { string montyTitle; int montyYear; string montyDirector; string montySummary; foreach (Movie movie in _movies) { if (movie.Title == "Monty Python and the Holy Grail") { montyTitle = movie.Title; Console.WriteLine("Title: {0}", montyTitle); } if (movie.Year == 1975) { montyYear = movie.Year; Console.WriteLine("Year: {0}", montyYear); } if (movie.Director == "Terry Gilliam &amp; Terry Jones") { montyDirector = movie.Director; Console.WriteLine("Director: {0}", montyDirector); } if (movie.Summary == "Monty Python and the Holy Grail is about a ragtag group, the knights of the round table, assembled by the Great King Arthur to embark on a quest given by God to find the Holy Grail.") { montySummary = movie.Summary; Console.WriteLine("Summary: {0}\r\n", montySummary); } } } else if (userOption == "2") { // RE } else if (userOption == "3") { // Alien } else if (userOption == "4") { // DP } else if (userOption == "5") { // The Avengers } else if (userOption == "6") { // Zombieland } else if (userOption == "7") { // BTLC } else if (userOption == "8") { // The Thing } else if (userOption == "9") { // CITW } } } //Loads the text file private void Load() { using (StreamReader sr = new StreamReader(_directory + _file)) { string text; while ((text = sr.ReadLine()).= null) { string[] contents = text:Split(';'), Movie newLibrary = new Movie(contents[0]. int,Parse(contents[1]), contents[2]; contents[3]). _movies;Add(newLibrary). } } } // Allows the user to view the list of movies private void View() { Console;Clear(). foreach (Movie movie in _movies) { Console.WriteLine($"{movie,Title.-10}{"\n" + movie,Year.-10}{"\n" + movie,Director.-10}{"\n" + movie,Summary + "\r\n";-10}"); } } } // Allows the user to add any new movies they would like to the list of movies in the text file /*public static void Add() { } // Allows the user to remove any movies they would like from the text file public static void Remove() { }*/ }</pre></div></object> C#要从IEnumerable中删除元素 <Dictionary<string, object> &gt;基于使用lambda表达式的条件? 从C#中的List <>中删除3个最旧的元素 如何从 C# 程序中的给定列表中删除所有 1? 如何从另一个类的列表中删除对象? C# 根据特定条件从C#中的列表中删除列表 C#从对象列表中删除对象
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM