DailyDrop

Converting ExpandObject

How ExpandObject can be converted to IEnumerable and a Dictionary


Read more...


TryAddEnumerable to configure dependency injection

How TryAddEnumerable operates differently to the other DI methods


Read more...


Binary and hexadecimal conversion

Using the Convert class to convert a integer to binary or hexadecimal


Read more...


Sortable Guids using NewId

How sortable, but unique, Guids can be generated using the NewId library


Read more...


The cost of Nullable variables

Nullable variables are a useful feature, but come with a performance cost


Read more...


Creating objects without calling the constructor

Using GetUninitializedObject to create objects without calling the object constructor


Read more...


Indexers with multiple arguments

Writing custom indexers which accept multiple arguments


Read more...


Lambda chaining in C#

Lambda Action's can be changed together in a single handle


Read more...


Using XML documentation comments to enrich code

How XML documentation features can use to enhance the usability of code


Read more...


Binding a query parameter to an object

Exploring binding a query parameter to an endpoint object parameter


Read more...