Six important .NET concepts: Stack, heap, value types, reference types, boxing, and unboxing
What goes inside when you declare a variable? When you declare a variable in a .NET application, it allocates some chunk of memory in the......
12 Years Ago
C# code to insert, delete and update in generic list
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text......
13 Years Ago
Differences between different datatypes in SQL Server
Differences between varchar and nvarchar in SQL Server VARCHAR is an abbreviation for variable-length character string. It's a string of ......
13 Years Ago
Disadvantages of LINQ over Stored procedures
Disadvantages of LINQ over stored procedures: LINQ needs to process the complete query, which might have a performance impact in case of co......
13 Years Ago
Concept of Early Binding and Late Bindind in C#
Before discussing about the differences, let's know what is meant by Early and Late Binding. Early Binding: The name itself describes tha......
13 Years Ago
Getting the Index of a dataGridView Row in the MouseMove Event Window Application
private void dataGridView1_CellMouseMove(object sender, DataGridViewCellMouseEventArgs e) { if (e.RowIndex >= 0 ) ......
14 Years Ago