c# collections

  1. C

    C# Generic collections - Get list of sub level child items from parent object

    Public class viewmodel { public string ID {get;set;} public String name{get;set;} public List<child1>{get;set;} } public class child1 { public string C1ID {get;set;} public String C1name{get;set;} public List<child2>{get;set;} } public...
  2. Anu

    Question code help using IEnumerable

    I need to fetch the details of the students who score more the 4 marks using IEnumerable interface in C#using System; using System.Linq; using System.Collections.Generic; public class Program { public class Student { public string Name { get;set; } public decimal Avg {...
Back
Top Bottom