Answers for "how to retrieve list items in c#"

C#
0

recorrer list c#

if (this.lista is List<B>)
{
List<B> list_B = this.lista as List<B>;
foreach (B b in list_B)
b.Tarea();
}
else if (this.lista is List<string>)
{
List<string> list_S = this.lista as List<string>;
foreach (string s in list_S)
Console.WriteLine(s);
}
Posted by: Guest on December-21-2020
0

c# get all elements from list

You could get the Customers like this:

using System.Linq;

collectionCarts.SelectMany(c => c.OrderList.Select(o => o.Customer));
Posted by: Guest on March-16-2021

Code answers related to "how to retrieve list items in c#"

C# Answers by Framework

Browse Popular Code Answers by Language