By tag: Types
0
kicks
Getting Started with LINQ - Part 2 (Language Enhancements)
In my previous post I summarized Microsoft Language Integrated Query (LINQ). Briefly discussed about its components as well as showed some code examples to highlight the sql query type syntax it uses. When we talk about LINQ, we are talking about number of little features that were added in .net 3.0...
0
kicks
Using anonymous types to shape data
Lets say you are writing a piece of software for a call center to use and you need to display values from multiple classes in your object model in a single DataGridView...
The problem is that you cannot bind a DataGridView column to a second-level property without writing TypeDescriptionProvider ...
0
kicks
Parameter passing in C#
A very visual post describing value types, reference types, immutable reference types, value types passed by value, reference types passed by value, value types passed by reference, and reference types passed by reference in C#.