My current understanding is that \'hard coded\' code like this:
public int Add(int x, int y) {return x + y;}
will always perform better tha
C# 6.0 now allows you to do this:
public int Add(int x, int y) => x + y;
instead of:
See Method Expressions and Property Expressions