language-agnostic tag for a collection of items where each item has a certain position
Is there a built-in method to convert the .NET List<> into the F# list?
c# .net f# generic-listI am trying to find the right way to use a Generic List of Generic Interfaces as a variable. Here …
c# generics interface generic-listIn C# I have been performing a FindAll in a generic list as follows: List<group.category> tlist = …
c# vb.net predicate generic-list findallI'd like to create a data table given a List using the CopyToDataTable method available in DataTableExtensions. I've previously asked …
c# datatable generic-listI have two Generic Lists containing different types, for the sake of example, lets call them Products and Employees. I'm …
c# linq linq-to-objects generic-listClass structure public class EmployeeDetails { public int Id { get; set; } public string Name { get; set; } public string Exp { get; set; } } …
c# list generic-list generic-collectionsConsider the following partial view code snippet List<sellingPrice> Prices = ViewBag.Prices; foreach (var mgmp in mg.messageGroup.…
linq entity-framework c#-4.0 generic-listSimilar question have been asked here but none fits to my need. I made test cases to see which is …
c# linq entity-framework generic-listI'm wondering whether it will be quicker to follow one pattern or another for constructing a unique list of objects …
c# performance generic-listI am serializing Lists of classes which are my data entities. I have a DataProvider that contains a List. I …
c# compact-framework c#-2.0 hash generic-list