Schotime @ March 18, 2008
.NET
|
Comments (11)
In my previous Linq post I discussed using Linq with Regular expressions and how much less code was needed. In this post we’ll again see how Linq can be used to speed up and simplify development. There are many situations where you need to read data from a file into memory or a database. Lets [...]
Schotime @ March 12, 2008
.NET
|
Comments (6)
Have you ever tried to push ctrl+A on a multi-line or single line textbox in a Dot Net Windows Forms application to select all of the text? If you have you would know that it doesn’t work. That’s right, standard windows functionality doesn’t work for the TextBox control. So here’s how to fix it using [...]
Schotime @ March 10, 2008
.NET
|
Comments (5)
With Linq now standard in .NET 3.5, there is no reason why we shouldn’t use it. After all its full of features that can be used by any object that inherits the type IEnumberable. With such power at our fingertips, sorting, filtering, manipulation etc. etc. are available to us with fewer lines of code than [...]