Skip to content

Righthand Blog

About .NET/C#, Xamarin, Flutter and other fun technologies

  • Righthand Dataset Debugger Visualizer
.net / Parallel programming

Generic Thread.VolatileRead and Thread.VolatileWrite

Posted on: January 21, 2010March 29, 2020

I am thinking about using a generic version of Thread.VolatileRead and Thread.VolatileWrite. The code is similar to existing one (actually there are plenty of overloads) with the difference […]

.net / CodeRush / DevExpress / DXCore / DXCore plugin / Visual Studio

Meet “Go To Implementator” DXCore plugin for Visual Studio

Posted on: January 18, 2010March 29, 2020

The problem One of the biggest annoyance when doing unit-test-friendly projects is that you have to deal with interfaces much more than you usually would. This isn’t bad […]

.net / DevExpress

Adjusting DevExpress’ XtraTabControl’s page padding

Posted on: November 16, 2009March 29, 2020

Look at the picture below, it is a DevExpress‘ XtraTabControl (WinForms) with a single page hosting a normal Button. Both XtraTabControl and Button are set as Dock = […]

.net / Parallel programming / Windows

Jinxing your application

Posted on: October 26, 2009March 29, 2020

If you ever wrote a multithreading application you should understand how hard is to get it right. If you don’t understand it then your application most probably isn’t […]

.net

Things that you didn’t know

Posted on: October 22, 2009March 29, 2020

I am working on a some sort of file cache system lately and I’ve encountered a bizarre error. When a certain file representing an image had to be […]

.net / .net 4.0

What’s new in the BCL in .net 4.0 beta 2

Posted on: October 22, 2009March 29, 2020

Check out this post about what’s new in the BCL in .net 4.0. beta 2. As you can see there is a good amount of timesaving functionality. My […]

.net / .net 4.0 / Visual Studio / VS 2010

Visual Studio 2010 beta 2 and .net 4.0 beta 2 available on MSDN

Posted on: October 20, 2009March 29, 2020

Both Visual Studio 2010 beta 2 and .net 4.0 beta 2 are available for MSDN subscribers and on Wednesday for everybody. Perhaps an important feature is that a […]

.net / .net 3.5 / .net 4.0 / LINQ

Dealing with iterations over null lists in LINQ to Objects

Posted on: October 15, 2009March 29, 2020

Problem If you used LINQ to Objects you have certainly come across iterations over null values resulting in an ArgumentNullException being thrown at you. See this example: int[] […]

.net / asp.net mvc / CodeRush / CodeSmith / DXCore / DXCore plugin / Presentation / Visual Studio / VS 2008

The slides and code from my “Making asp.net mvc applications strong typed” presentation

Posted on: October 2, 2009March 29, 2020

Yesterday I held a presentation (as the part of Bleeding Edge 2009 conference) on how to make ASP.NET MVC applications strong typed by using CodeSmith and CodeRush (actually […]

.net / CodeRush / DevExpress / Visual Studio

Reversing for loops with CodeRush

Posted on: September 17, 2009March 29, 2020

Imagine you have to delete a bunch of items from a list, something like this: List<int> items = new List<int>();…for (int i = 2; i < items.Count; i++){ […]

Posts navigation

Previous page Page 1 … Page 6 Page 7 Page 8 … Page 31 Next page
Niche Blog by Fahim Murshed