Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
Event registration app with QR/Paypal
Home
Thursday, February 27, 2014
ASP.NET MVC fiddle, like jsfiddle, for the people don't like Visual Studio
http://dotnetfiddle.net/CsMvc
C# Safe Navigation Operator: ?.
http://blogs.msdn.com/b/jerrynixon/archive/2014/02/26/at-last-c-is-getting-sometimes-called-the-safe-navigation-operator.aspx
var g1 = parent.child.child.child;
Problem happens if any child is null.
New operator solves this problem
var
g1 = parent?.child?.child?.child;
if
(g1 !=
null
) // TODO
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)