Programmer magic
A blog about computer programming and the life of a software developer.
Saturday, December 1, 2018
C# code economy
If you only need to return a view in an ASP.NET MVC application, instead of writing:
public IActionResult Index()
{
return View();
}
you can write:
public IActionResult Index() => View();
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment