Programming
Gentle Introduction to MEF–Part Three
·1035 words·5 mins
Programming
Dependency Injection
MEF
At the Tampa C# Meetup on August 3rd, I presented this Gentle Introduction to MEF using the same project modified over three steps. This is Part Three, where I complete the application created in Part One and modified to use MEF in Part Two. This part will show MEF composing the application from multiple assemblies into one application at run time.
Gentle Introduction to MEF–Part Two
·1541 words·8 mins
Programming
Dependency Injection
MEF
At the Tampa C# Meetup on August 3rd, I presented this Gentle Introduction to MEF using the same project modified over three steps. This is Part Two, where I show the application created in MEF .
Choosing an MVVM Framework
·362 words·2 mins
Programming
MVVM
I have recently begun planning a new project, and I needed to do all the standard pre-project decision making on build runners, test frameworks, continuous integration tool, IoC , and since it was going to need a UI, an MVVM framework. These decisions are usually quite quick since I tend to reuse the same things I used for my last project. However, every so often I take the time to evaluate the field of choices.
Gentle Introduction to MEF–Part One
·748 words·4 mins
Programming
Dependency Injection
MEF
At the Tampa C# Meetup on August 3rd, I presented this Gentle Introduction to MEF using the same project modified over three steps. This is part one, where I show the application without MEF .
Caliburn.Micro EventAggregator Extension Methods
·85 words·1 min
Programming
Caliburn.Micro
EventAggregator
Gist
GitHub
When working with the EventAggregator, I occasionally stumble upon situations in which I want to subscribe to multiple instances exposing the IHandle interface. It is not often, but happens enough that I got tired of the same code multiple times, and created a couple of extension methods to deal with this for me. I have posted the code up on GitHub as a Gist in case you find it useful as well.