Posts tagged with "C#"

C# is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines. It was developed by Microsoft within its .NET initiative and later approved as a standard by Ecma (ECMA-334) and ISO (ISO/IEC 23270:2006). C# is one of the programming languages designed for the Common Language Infrastructure.

ASP.NET MVC - DataAnnotation Localization

May 29, 2017 by Christoff Truter - 1 Comment

Strangely enough - especially seeing that localization has been a requirement in all of my work related codebases for the last 4 years or so, this is the first time that I am writing on the subject of localization.

C#   ASP.NET   PostSharp   MVC  

Unobtrusive Client Validation in ASP.NET MVC using AngularJS

June 28, 2016 by Christoff Truter

When Microsoft released ASP.NET MVC 3 around October 2010, they introduced a feature called "unobtrusive client validation" into their codebase using jQuery. In this post we’re going to focus on making unobtrusive validation work without jQuery using Angular

C#   JavaScript   ASP.NET   Angular   MVC  

Dependency Injection using Ninject and PostSharp

April 26, 2016 by Christoff Truter - 1 Comment

Dependency injection is one of the common approaches when dealing with the inversion of control (IoC) design principle and the dependency inversion principle (DIP).

C#   PostSharp   Ninject  

Aspect Orientated Programming (AOP) - A Brief look at PostSharp

April 15, 2016 by Christoff Truter

It is all about the separation of the common functionality that span over layers and tiers (e.g. logging, caching, security, validation, benchmarking etc), know as cross cutting concerns, which the various AOP frameworks attempt to achieve with little or no modification to existing source code.

C#   Threading   PostSharp  

Quick rundown of possible new C# 6.0 features (perhaps, maybe - I think)

January 19, 2015 by Christoff Truter

This post contains a list of features added to C# 6.0, based on the VS2015 preview, not sure how close we are to the official release, soooo this might, perhaps, maybe, possibly, conceivably, for all we know be some of the new C# features.

C#