Skip to content

Righthand Blog

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

  • Righthand Dataset Debugger Visualizer
C#

Strong typing DisplayAttribute reference to Resources

Posted on: March 30, 2016March 29, 2020

Let’s say there is a decorated member with DisplayAttribute in code, i.e.: public enum SomeEnum { [Display(Name = “ResourceKey”, ResourceType=typeof(Resource)] SomeValue } That’s all right except for one […]

Visual Studio / Xamarin

Fixing connection problems between Visual Studio and Mac when building iOS applications

Posted on: March 16, 2016March 29, 2020

I’ve been digging a bit into problems of connection between Visual Studio (Xamarin.iOS) and a Mac and wanted to share a few tips here. It all started with […]

C#

Use async keyword only when required

Posted on: March 5, 2016March 29, 2020

While async keyword is very useful it shouldn’t be used when it isn’t required. Imagine this method public async Task DoSomethingAsync() { await Task.Delay(1000); } The method works […]

Uncategorized

Live Writer is now open source

Posted on: December 13, 2015March 29, 2020

In case you’ve missed the announcement, Live Writer is now open source and renamed to Open Live Writer. One of the interesing change is that it now uses […]

.net / C# / Linux / Mono / ORM

Porting a .net application to Linux/Mono/MonoDevelop

Posted on: December 13, 2015March 29, 2020

I have a small .net application that I wanted to run on Linux since it is a deamon/service sort of app. Basically is an app that peridically retrieves […]

.net

TwoWay binding trap on Windows Store apps

Posted on: May 28, 2015March 29, 2020

Imagine having a TextBox bound to a viewmodel’s property in a TwoWay mode. In between a converter that does possibly an asymmetric conversion – in this case the […]

.net

NCrunch and SQLite testing problem and solution

Posted on: May 8, 2015March 29, 2020

I have some NUnit tests on .net 4.5.1 class library against PCL and both use SQLite.Net PCL, the former uses its Win32 platform.When running from a test runner […]

Windows 8

A hidden bug in Windows Store’s ComboBox

Posted on: April 10, 2015March 29, 2020

Since some time ago I’ve been using Immutable Collections as much as I could due to their immutability contract – nothing ever changes. So far so good, but […]

Android / Mobile / Visual Studio

(Android) Emulator on Hyper-V

Posted on: November 13, 2014March 29, 2020

An apparently great news is that Microsoft has been cooking up an Android emulator. It appears that every company now feels compelled to create one. Right now we […]

Uncategorized

My first public Android application has been published a while ago

Posted on: October 11, 2014March 29, 2020

I should have written this post months ago, I kept postponing it but now here it is. For the first half of the year I’ve been writing a […]

Posts navigation

Previous page Page 1 Page 2 Page 3 Page 4 … Page 59 Next page
Niche Blog by Fahim Murshed