Category Archives: Uncategorized

What’s new in C# 6.0

  What’s new in C# 6.0 In this article, I am going to talk about new language feature of C# 6.0. I am personally liking these features a lot because they help in writing clean and understandable code. With the … Continue reading

Posted in CodeProject, Uncategorized | Leave a comment

Understanding Filters in ASP.net MVC

  Filters in ASP.net MVC Filters are interesting and somewhat unique part of ASP.net MVC. Filters are designed to inject logic in between MVC request life cycle events. Filters provide developers with powerful ways to inspect, analyze, capture and instrument … Continue reading

Posted in CodeProject, Uncategorized | Tagged | Leave a comment

Getting started with Apache Cordova

Building cross platform Mobile Applications using Apache Cordova – Part 1   Apache Cordova is an open source platform for building cross platform mobile applications that runs on several mobile devices including iPhone, Android, Blackberry, Windows etc. Cordova facilitates writing … Continue reading

Posted in CodeProject, Uncategorized | Leave a comment

Understanding Cyclomatic complexity and its importance in code analysis metrics

  cyclomatic complexity: Cyclomatic complexity in code is software metric used to indicate the complexity in the program. It is a quantitative measure of the number is linearly independent paths through programs source code.

Posted in CodeProject, Uncategorized | Leave a comment

Cyclomatic Complexity

cyclomatic complexity: Cyclomatic complexity in code is software metric used to indicate the complexity in the program. It is a quantitative measure of the number is linearly independent paths through programs source code. Read more about cyclomatic complexity here. In … Continue reading

Posted in Uncategorized | Leave a comment