Posted on March 29, 2007 at 7:57 am
Orcas: dynamic typing the .net way
An interesting addition to the .net framework, the Extension Methods allow you to add functionality to an already existing class by plugin in methods to it’s definition and then importing the namespace. The syntax is kinda strange, but easy to grasp. Supposing that scenario on ruby:
class MyAwesomeClass
def methodus
end
end
You can [...]



















