| A Dictionary Collection Sorting By Value |
| The Code Project |
| An article on creating a custom collection like the SortedList that sort entries by value instead of by key |
|
| A LargeListDictionary Implementation |
| The Code Project |
| Implementation of a list accessible by key with Hashtable-like performance |
|
| Active Directory object picker control |
| The Code Project |
| A windows control for selecting objects in Active Directory |
|
| ADO.NET 2.0 Feature Matrix |
| MSDN |
| ADO.NET 2.0 includes a new base-class provider model, features for all providers, and changes to System.Data.SqlClient. Get an overview of these new features, examples of their use, and a chart of which features are provider-neutral and SqlClient-specific. |
|
| Creating Custom Collections |
| FLWS.com.au |
| Even though the FCL offers many different collection types such as the SortedList, ArrayList, Hashtable etc., sometimes it makes sense to create your own. Creating your own, custom collection can help to make your code more self describing. |
|
| Creational Pattern - Builder |
| C# Corner |
| It is a pattern for step-by-step creation of a complex object so that the same construction process can create different representations is the routine in the builder pattern that also makes for finer control over the construction process. All the different builders generally inherit from an abstract builder class that declares the general functions to be used by the director to let the builder create the product in parts. |
|
| Drawing a Bar Chart |
| The Code Project |
| This is an article used to draw a barchart for given set of values. |
|
| Hash Table in .Net |
| The Code Project |
| How to store and retrieve classes in hash tables |
|
| How to use the Hashtable collection in Visual C++ .NET |
| Microsoft Support |
| (815673) - This step-by-step article describes how to use the Hashtable collection. By using hashing to retrieve the data, you do not have to use the costly searching mechanism. Hashing uses the value of the key itself to locate the data. The Base Class... |
|
| How to use the Hashtable collection in Visual C++ .NET |
| http://www.kbalertz.com/ |
| (815673) - This step-by-step article describes how to use the Hashtable collection. By using hashing to retrieve the data, you do not have to use the costly searching mechanism. Hashing uses the value of the key itself to locate the data. The Base Class... |
|
| IEnumerable, IEnumerator, and Dictionaries |
| C#Today |
| One of the many new and useful features in C# is the ability to use foreach loops to iterate through items in an array or collection. This relies on the implementation of two interfaces from the System.Collections namespace: IEnumerable and IEnumerator. In this article, Karli Watson takes a look at exactly what goes on under the hood in foreach loops. By knowing how things work we can take advantage of the system to create novel classes, and will be better equipped to customize some of the more advanced collection classes that the .NET framework has to offer, allowing us to streamline our code by bypassing much of the overhead inherent in more verbose collection classes. |
|
| LANGUAGE SELECT for your programs |
| The Code Project |
| Make its application international! |
|
| Modularizing Object Collections With The Collections API |
| C#Today |
| The Collections API in the .NET Framework merits close attention by all .NET developers because of the flexibility it offers for writing applications in .NET. We can use it to manage groups or collections of similar objects, standardizing the way in which groups of objects are handled by our programs. In this article, Thiru Thangarathinam takes us through a tour of all the important collection classes by showing us examples, and then goes on to show us how these collection classes can be very useful in the day-to-day work of a developer. |
|
| NET Diagnostics – IV, Use Environment Class To Get Your Environment |
| The Code Project |
| As the title of article says, I will be discussing use of Environment class in System namespace. I was looking for equivalents to some of very useful Win32 APIs that we use in our projects a lot. E.g. what is my OS, what is path to system folder, what is the current folder, how do I terminate a process, etc? In Win32 we have APIs like GetVersionEx, GetCurrentDirectory, GetSystemDirectory, exit, etc. to accomplish all these tasks. So where do we look in .NET SDK for all these APIs. |
|
| Persisting Application data using Hashtable and IsolatedStorage |
| The Code Project |
| This article demonstrates a custom class that can be used to store and retrieve application data in an easy and reliable manner. It uses an extended Hashtable to persist data into Isolated Storage. You can download a sample project which demonstrates the use of this simple, but very useful class. |
|
| VS.NET CodeDOM-Based Custom Tool for String Resource Management |
| The Code Project |
| A VS.NET custom tool, created with the help of CodeDOM and EnvDTE, used to facilitate management of resource strings via IntelliSense and error checking in VS.NET environment |
|