Author: Andreas Plahn
.NET Design Patterns in C# and VB.NET – Gang of Four (GOF) – doFactory.com
Design patterns are solutions to software design problems you find again and again in real-world application development. Patterns are about reusable designs and interactions of objects.
Ninite – Install or Update Multiple Windows Apps at Once
The easiest, fastest way to update or install software. Ninite downloads and installs programs automatically in the background.
Source: Ninite – Install or Update Multiple Apps at Once
Also check these out:
http://boxstarter.org/
https://chocolatey.org/
My Favorite Programming Fonts for Visual Studio Development
Chrome’s latest tool checks your website’s security
Chrome’s latest tool checks your website’s security
http://www.engadget.com/2016/01/27/google-chrome-48-security-panel/
ASP.NET 5 is dead – Introducing ASP.NET Core 1.0 and .NET Core 1.0 – Scott Hanselman
C# Interactive Window · Wiki doc
The C# Interactive Window provides a fast and iterative way to learn APIs, experiment with code snippets, and test methods by giving immediate feedback on what an expression will return or what an API call does.
The C# Interactive Window is a read-eval-print-loop (REPL) with advanced editor support. It supports features like IntelliSense as well as the ability to redefine functions & classes. After entering a code snippet–which can contain class and function definitions at top-level along with statements–the code executes directly. This means you no longer need to open a project, define a namespace, define a
Main
method, add aConsole.WriteLine()
call to output your result, and add aConsole.ReadLine()
call in order to play with code. In other words, say goodbye to ConsoleApp137 or whatever ridiculously high number your Console Apps default to today!
Use C# Interactive Window for your coding experiment in Visual Studio 2015
Unit testing faked async methods
With the addition of the async/await keywords in .NET Framework 4.5, many more methods will now return Task<TResult>. For example, a web service method can now be created to return Task<TResult> so it is ready for the async/await keywords. This brings up the question on how you can unit test these methods.
Read more: http://www.intertech.com/Blog/creating-a-task-with-a-known-result/#ixzz3xSNIAWB7