RECENT POSTS ON C#

by SandeepSoni | October 10th, 2017 | 39 Shares | Tags : ASP.NET MVC Linq

In MS.NET when an object is created there is no way to get the address of an object. Only the reference to the object is given through which we can access the members of the class for a given object. When an object is created all the variables (value/ reference types)…

Read more

by SandeepSoni | October 10th, 2017 | 39 Shares | Tags : ASP.NET MVC Linq

C# 6 improves the auto-properties capabilities so that you can use them in more scenarios. You won’t need to fall back on the more verbose …String interpolation:
It’s a feature which can eradicate the use of String.Format method which ..

Read more

by SandeepSoni | Sept 16th, 2014 | 39 Shares | Tags : ASP.NET MVC Linq

In computer systems, a framework is often a layered structure indicating what kind of programs can or should be built and how they would interrelate. Some computer system frameworks also include actual programs, specify programming interfaces, or offer programming tools for using the frameworks.

Read more

by SandeepSoni |
Aug 24th, 2014 | 39 Shares |
Tags : ASP.NET MVC Linq

When the application is not used as child process, the return value of main is not useful because whatever may return the value when the Main method ends the application terminates and OS will clean
all the memory allocated to it.

Read more

by SandeepSoni | Aug 24th, 2014 | 39 Shares | Tags : ASP.NET MVC Linq

ADO.NET (Active x Data Object) is a mediator between the front end and back end that interacts with the client-side application and server-side application which supports two types of Data Accessing models, one is Connection-oriented and Disconnected oriented.

Read more

by SandeepSoni |
Sept 16th, 2012 | 39 Shares | Tags : ASP.NET MVC Linq

In a typical n-tier application there will be 4 Layers. The bottom-most layer is the Data layer which contains the tables and stored procedures, scaler function, table values function. This Data layer is typically the database engine itself. We will be using SqlServer as the data layer in our example.

Read more

by SandeepSoni |
Sept 16th, 2012 |39 Shares | Tags : ASP.NET MVC Linq

Thread: The path of execution of instructions within a process is called a thread. A program with multiple simultaneous paths of execution is said to be a multithreaded application.

Read more