Underscore.Net - A .NET implementation of Underscore.js
This is an experimental project began few days ago when I accepted a challenge by Kazi Rashid. I had to implement _.debounce() method of Underscore.js in c# to complete this challenge. I thought, why stop at debounce()
only?
Testing codes with ConfigurationManager.AppSettings
When developing an ASP .NET MVC or WebAPI based application, we eventually need to read configurations from <appSettings>
section of Web.Config file. Here is an example entry from my imaginary project:
Configurable transaction scope
In one my projects, I had to implement something with TransactionScope. Here is the code skeleton for that purpose: