Tag Archives: C#

Filtering a Dictionary List

One important component I needed for my Systems Directorate application is the ability to filter rows from a dictionary list and get the matching and non-matching rows. This article will describe the set of extension methods I created to perform … Continue reading

Posted in Dennis-IT Tools | Tagged , , | Comments Off on Filtering a Dictionary List

Some useful string extensions

I have created a useful set of string extensions in C# for doing many string operations like conversions to and from numbers, formatting, and escaping. Most of these were required by the application that I’m working on but are very … Continue reading

Posted in Dennis-IT Tools | Tagged , , , , , , | Comments Off on Some useful string extensions

Macro Resolution via Dictionaries

In my Systems Directorate application, I needed a way of handling macro resolution so that the user could easily substitute values when configuring parts of the application. For most of the application, I have standardized on a Dictionary<string,object> structure for … Continue reading

Posted in Dennis-IT Tools | Tagged , , , | Comments Off on Macro Resolution via Dictionaries

Handling Highly Structured Data in ASP.NET Pages

Hi Everyone! I thought I’d talk about how I handle working with highly structured data in an ASP.NET web page. For my DMF application, I’m using ASP.NET for the management console for the system and I have a lot of … Continue reading

Posted in ASP.NET | Tagged , , | Comments Off on Handling Highly Structured Data in ASP.NET Pages

My Excellent Database Library

I was going to talk about a new feature that I had just added to my database library, but then I realized that I haven’t talked about the library at all yet.  I guess that I planned to for so … Continue reading

Posted in Dennis-IT Tools | Tagged , , , , | Comments Off on My Excellent Database Library