Category Archives: C#

10 years as a developer

Looking back over the last ten years Today I have officially spent ten years working as a .net developer Getting into the game When I left secondary school, I originally wanted to go into the hotel industry, and I spent two years studying leadership and management in hospitality in college. However midway through my course, I decided that… Read More »

ASP.NET Web API – Returning javascript friendly (camelcase) json in two lines of code

Naming conventions of properties defer slightly in .NET and JavaScript. .NET uses?pascal-case and JavaScript uses camel-case. When developing a .NET API all the public properties should use the naming convention pascal-case. However if the service is consumed as an API with a JavaScript client then the json returned should be camel-case. Now you could go and add the… Read More »