Author: Nithin Mohan TK

Technology Enthusiast | .NET Specialist | Blogger | Gadget & Hardware Geek

The Singleton – Design Pattern

Posted on 1 min read

The Singleton – Design Pattern The Singleton Design Pattern ensures that only a single instance of a given object can exist. It does this by making the class constructor private so that it will be the singleton itself, and singleton class has full control over when the class instance is created.  In order to gain access to… Continue reading

Select IN query using LINQ

Posted on 2 min read

In our SQL Query there is a situation when we want to fetch records based on records within the a Set of RecordID(primary key) Lets look in to one example I have a table  Employee which has the columns EmpId, EmpName, EmpDesg etc. You want to select the Employee Records from Employee table with EmpID within 61,62,63… Continue reading

More on MVP Pattern – Part 2

Posted on 3 min read

Model-view-presenter (MVP) is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic. The model is an interface defining the data to be displayed or otherwise acted upon in the user interface. The view is an interface that displays data (the model) and routes user… Continue reading

Free 60 Controls from DevExpress

Posted on 1 min read

DevExpress is  offering us over 60 DevExpress controls free of charge – without royalties or distribution costs. These free license includes the following DevExpress products for WinForms, ASP.NET and Silverlight platforms: To obtain your free DevExpress controls Visit Link

DevLabs: Code Contracts

Posted on 3 min read

  Code Contracts Lots of fixes! Our new release has been upgraded to work with Visual Studio 2010 Beta 2. (Of course, it also works with Visual Studio 2008, but this is a great time to download the new beta and get started with it.) There are lots of other improvements: be sure to check… Continue reading

DevLabs: Spec Explorer

Posted on 2 min read

  About Spec Explorer Spec Explorer 2010 is a tool that extends Visual Studio for modeling software behavior, analyzing that behavior by graphical visualization, model checking; and generating standalone test code from models. Behavior is modeled in two ways: by writing rule machines in C# (with dynamic data-defined state spaces) and by defining scenarios as… Continue reading

DevLabs: STM.NET (Software Transactional Memory)

Posted on 2 min read

DevLabs: STM.NET   About Software Transactional Memory Software Transactional Memory (STM.NET) is a mechanism for efficient isolation of shared state. The programmer demarcates a region of code as operating within a transaction that is “atomic” and “isolated” from other transacted code running concurrently. Transactional memory is considered a promising technology by the academic community and… Continue reading

Showing 1051-1060 of 1111 posts
per page