C# Refactoring Adventures in LINQ
I was presented with a scenario recently which I felt an ideal opportunity to begin my adventures into LINQ. Essentially I had to parse a collection setting a property in objects within the collection...
View ArticleType Filtering and Method Invocation with Reflection and LINQ – Part 1
I’m currently studying for Microsoft 70-483 Programming in C# exam, and a strategy I’m trying to adopt when researching for a topic is to combine aspects of other topics that I’m unfamiliar, then...
View ArticleType Filtering and Method Invocation with Reflection and LINQ – Part 2
In this post we’ll start looking at the structure of the solution for the problem posed in Part 1. Recall from the previous post that we were wanting to create a library that could iterate over an...
View ArticleType Filtering and Method Invocation with Reflection and LINQ – Part 3
So, in part 2 we looked at setting up a Visual Studio solution to host the project. We split it up into four parts: Attribute Discovery Custom Attributes Attribute User Host executable In this part...
View ArticleType Filtering and Method Invocation with Reflection and LINQ – Part 4
Continuing on from the last post where we define some custom attributes, let’s look at setting up a class AttributeUsers that will use these attributes. Add a new class library to the main solution....
View Article