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 […]

Niche Blog by Fahim Murshed