Click here to Skip to main content
15,891,513 members
Everything / IList

IList

IList

Great Reads

by Bryan Lyman
Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using events
by PIEBALDconsult
I wasn't going to publish this version, but I just used it a second time, so maybe someone else will need it too. This is very much like the second version above except that it uses a non-generic IList. Today, I used this to find and insert TreeNodes in a TreeNodeCollection, yesterday I used it...
by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
by Jörgen Andersson
A propertymapping extension for DataReaders

Latest Articles

by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
by Jörgen Andersson
A propertymapping extension for DataReaders
by Bryan Lyman
Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using events
by cpsglauco
How to use delegate in List.Find() predicate in C#

All Articles

Sort by Score

IList 

5 Oct 2012 by Bryan Lyman
Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using events
26 Apr 2018 by Frederic GIRARDIN
Hi. I'm using vb.net and I'm trying to extend and/or overrides a class from a referencing DLL (called IFCX) in the using DLL (ESTX). Whole shoud asking me "WHY doing this ?" the reason is overwellmind : - Both DLL have a means, but when i use ESTX, i load the data from IFCX too, but IFCX object...
8 Dec 2011 by PIEBALDconsult
I wasn't going to publish this version, but I just used it a second time, so maybe someone else will need it too. This is very much like the second version above except that it uses a non-generic IList. Today, I used this to find and insert TreeNodes in a TreeNodeCollection, yesterday I used it...
24 May 2012 by Makbg
Hello everyone,Can anyone tell me how to declare and use the Ilist in wpf ? I'm making a project for my university that involves getting a series of points from a depth image so I want to save these points in an Ilist.Thanks in advance
24 May 2012 by AhsanS
IList is an interface. You can implement it like IList[^]If you want to save points in a collection you can use List,Hashtable, Dictionary.
24 May 2012 by Pete O'Hanlon
I'm not sure what you really want from us here. IList is merely an interface that is implemented in collections such as List and so on. What are your requirements?
24 May 2012 by Jim Jos
Hi,Whether you are using WPF, Winforms, Asp.net C# is the same. IList is part of System.Collections.Generic namespace.. Please refer the below...
26 Apr 2018 by Frederic GIRARDIN
Imports System.Runtime.CompilerServices Module MyClassExtended _ Public Function Assignations(Sender as IFCX.IMPORT_ELEMENT,about as ESTX.BL_ESTX) as list(of ESTX.ASSIGNATION) dim _list as list(of ESTX.ASSIGNATION) 'can't raise specific event Ask_Assignations because...
11 Dec 2018 by Member 13839622
I'm creating a usercontrol and I want to replicate the SelectedObject property of the .NET PropertyGrid Control. i.e.... I want the user to be able to select a control, from a list of controls which have been placed on my UserControls' Parent form. They will be selecting the control in the...
9 Dec 2018 by RickZeeland
You can use the Controls collection, see example here: c# - Loop through all controls on a form,even those in groupboxes - Stack Overflow[^]
11 Dec 2018 by Member 13839622
Here's a non elegant solution, which probably isn't the best way to do it. If anyone can approve upon it, PLEASE LET ME KNOW: private string _SelectedObject = "Unknown"; [Category("Custom"), TypeConverter(typeof(SelectedObjectConverter))] public string SelectedObject ...
26 Aug 2018 by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
26 Jan 2016 by Jörgen Andersson
A propertymapping extension for DataReaders
20 May 2012 by cpsglauco
How to use delegate in List.Find() predicate in C#
25 Dec 2011 by PIEBALDconsult
A binary search of a sorted IList to retrieve an index