andrewhare
- Karma
- 59
- Created
- March 21, 2010 (16y ago)
- Submissions
- 0
- Google JS Test, now in Open Source (googletesting.blogspot.com)
- Nose is nicer testing for Python (readthedocs.org)
- Knockout Style Data-Bind Attributes For Backbone (lostechies.com)
- C# overload resolution puzzler (togaroga.com)
- Two structural additions to C# (togaroga.com)
-
C# is well known for its nominative type system. This means that C# identifies types and their relationships based on their names. That is why C# does not allow you to create two types with the same name, even if they…
- Togaroga - Choosy developers choose interfaces (togaroga.com)
Each time you write a method that accepts arguments you must make a decision as to the type of those arguments. If you are not careful, your choice could place unnecessary restrictions on the caller of the method that…
-
Most C# developers are very familiar with writing imperative code (even though they may not know it by that name). In this article, I will introduce you to an alternative style of programming called declarative…