tag

home / developersection / tag

LINQ Joins in C#
.net 28-Jan-2015
LINQ Joins in C#

In this blog, I’m explaining about joins in LINQ in .NetThere are different types of LINQ joins.1.Inner join2.Left join3.Cross join4.Group joinInner j

Reflection in C#
.net 27-Jan-2015
Reflection in C#

 In this blog, I’m explaining about Reflection in .Net Reflection is the process by which program can read its own metadata. Reflection provides obje

Encryption and Decryption in .NET
.net 27-Jan-2015
Encryption and Decryption in .NET

In this blog, I’m explaining about Encryption and Decryption in .NetEncryption is the process of translating plain text into something that appears to

Partial Classes in C#
.net 24-Jan-2015
Partial Classes in C#

In this blog, I’m explaining about the partial classes in C#. A partial class allow a single class to be divided into two separate physical file.Duri

Difference between Interface and Abstract Class in .Net
.net 23-Jan-2015
Difference between Interface and Abstract Class in .Net

Difference between Interface and Abstract Class in .NetIn this blog, I’m explaining about interface and abstract class in .NetAbstract ClassAbstract

Common Type System in .Net
.net 22-Jan-2015
Common Type System in .Net

In this blog, I’m explaining about CTS  in .NetCTS defines a collection of data types, which are used and managed by the run time to facilitate cross-

Common Language Runtime  in .Net
.net 22-Jan-2015
Common Language Runtime in .Net

Normal0falsefalsefalseEN-USX-NONEX-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0

JIT (Just In Time) Compiler in .Net
.net 21-Jan-2015
JIT (Just In Time) Compiler in .Net

   In this blog, I’m explaining about JIT Compiler in .NetNormal0falsefalsefalseEN-USX-NONEX-NONE /* Style Definitions */ table.MsoNormalTable {

DLL hell Problem in .Net
.net 21-Jan-2015
DLL hell Problem in .Net

In this blog, I’m explaining about DLL hell problem and solution in .Net DLL hell refers to a set of problems caused when multiple application attemp

Global Assembly Cache (GAC) in .Net
.net 21-Jan-2015
Global Assembly Cache (GAC) in .Net

In this blog, I’m explaining about GAC in .Net Each computer on which the common language Runtime (CLR) is installed has a machine-wide code cache

Assembly in .Net
.net 21-Jan-2015
Assembly in .Net

In this blog, I’m explaining about assembly in .Net An assembly is grouping of files deployed as a single file. An assembly almost always consists of

Lambda Expression in c#
.net 20-Jan-2015
Lambda Expression in c#

In this blog, I’m explaining about the lambda expression in C#. Lambda expressions are anonymous methods, aimed at mainly addressing the "vertical pro