By tag: Collection
0
kicks
Convert Data Table into List
I am explaining here the reverse way of my previous article i.e conversion of DataTable into List.
0
kicks
Getting Started with LINQ - Part 2 (Language Enhancements)
In my previous post I summarized Microsoft Language Integrated Query (LINQ). Briefly discussed about its components as well as showed some code examples to highlight the sql query type syntax it uses. When we talk about LINQ, we are talking about number of little features that were added in .net 3.0...
0
kicks
A Deque Implementation for .NET
Collection class using the 'deque' data structure as it is implemented in the standard C++ library to C#. Beats System.Collections.Generic.List<> and System.Collections.Generic.LinkedList<> in nearly all categories and produces much less garbage (garbage as in garbage collection inducing...
0
kicks
Things to Notice When Binding to Large Collection
Lately I was working on an application that had to display a large amount of objects on screen and allow filtering. I have learned that scrolling large collections was not so simple in WPF, and I definitely did not see the problems coming.
0
kicks
How to: Take control over the Collection Editor's PropertyGrid
The PropertyGrid control is a very useful tool if you want to update object attributes at run-time in a elegant way. The PropertyGrid provides some useful events to let you know what is going on. The problem occures for the collection properties when the Collection Editor form is shown. This form al...
0
kicks
Smart PropertyGrid.Net knows how to target multiple collections
This screencast shows how the Microsoft PropertyGrid fails at targetting multiple instances and how Smart PropertyGrid.Net solves the problem.
0
kicks
C# Collections
The thirty-sixth part of the C# Fundamentals tutorial introduces the use of collections in C#. A collection is similar to an array in that it contains a group of objects. However, the use of varying types of collection provide for more functionality.
0
kicks
Creating a Generic Collection Class with Sorting Support in .NET 2.0
One of the coolest new features in .NET 2.0 is the introduction of Generics. For those of you that have been creating tons of strongly typed collections for your business objects I'm sure you had the same reaction I did when you heard about them. "Sweet!! Now I can stop generating and tweaking ...