KeesTalksTech Utility Pack

I’ve bundled most of the C# code snippets into a single GitHub project: https://github.com/KeesCBakker/KeesTalksTech-Utility-Pack.

There are 6 articles tagged with KeesTalksTech Utility Pack.

A BlockHasher helper class

There are a few instances in which you’ll need to hash a combination of data. You might resort to creating one big string and hashing that. It has a clear disadvantage from a memory and processing point of few. It might even be impractical when files or streams are involved. That’s why I created a BlockHasher utility class that helps to generate these types of hashes.

Read the article A BlockHasher helper class

Auto fill settings objects with .config values

Lately I’ve been playing around with some API’s. Most of them need a bunch of settings that I’m storing them in my config files. I found myself doing the same work over and over again: creating a settings class, filling the class with information and using it. So I came up with a way to leverage reflection to fill my setting classes with .config values.

Read the article Auto fill settings objects with .config values
expand_less brightness_auto