language-agnostic tag for a collection of items where each item has a certain position
I would be certain that this question addresses something that would have been brought up in a previous question, but …
c# generic-listMy Code looks like this : Collection<NameValueCollection> optionInfoCollection = .... List<NameValueCollection> optionInfoList = new List<NameValueCollection>(); …
c# sorting generic-listIs it possible to put a [Required] attribute onto a List<> property? I bind to a generic list …
asp.net-mvc validation model generic-listI'm having some problems with a method returning a generic list. The code is basically this: public class MyClass{ private …
java generics generic-listIn my Visio 2007 UML document I am unable to figure out how I can add an operation to an Interface …
visio generic-list user-defined-typesIn my generic repository I have below method: public virtual IEnumerable<T> GetAll<T>() where T : …
c# linq sql-order-by generic-listI have a generic list that is being used inside a method that's being called 4 times. This method writes a …
c# reverse generic-listHow can i sort myScriptCellsCount.MyCellsCharactersCount (list int type) in linq public class MyExcelSheetsCells { public List<int> MyCellsCharactersCount { …
c# linq .net-3.5 sorting generic-listI am trying to bind a generic list like List Parents to a ComboBox. public Form1() { InitializeComponent(); List<Parent&…
c# winforms binding combobox generic-listI am writing an address book program. I have each person's details stored in a List<Person>. I …
c# sorting generic-list