This post originated from an RSS feed registered with .NET Buzz
by Maruis Marais.
Original Post: RSpec specifications in C#
Feed Title: exceptionz
Feed URL: http://feeds.feedburner.com/Exceptionz
Feed Description: I am an XP, TDD, OO and .NET enthusiast. Things like Design Patterns makes my pulse race, I love learning exciting new things and to share my thoughts and techniques with the world. So join me and together we can explore the awesome world of software development
Scott Bellware posted a very interesting article around using C# 3.0 Extension Method to create the same effect as Ruby Mixin to extend existing objects with new methods.
Basically, what I’m talking about is the ability to add a method to an object within a specific context without accessing the sourcecode. For example, add a ToCamelCase() [...]