Few days back , i found some codebase which handled so many if conditions based on some input parameter. This thing made particular method to be 100 lines long. The code works fine , but was too ugly.
Saturday, 20 June 2015
Subscribe to:
Posts (Atom)
Basics of Tree data structure
Tree data structure simulates a hierarchical tree structure, with root and subtrees represented by linked nodes. Some Terminology Root...
-
HTML5 has some exciting features & one of them is database storage on your browser itself. In this tutorial i will guide you brief ab...
-
Topological sorting in directed graph is linear ordering of vertices, such that for every directed edge from u to v, vertex u will come bef...
-
We all are aware that when we take any model from view(user input) into the controller , we always tend to use ModelState.IsValid to chec...