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
Project Rider – A C# IDE | ReSharper Ultimate Blog
A Software Developer’s Guide to HTTP Part I – Resources
A great overview of http for all web developers.
Masssive, a small, happy, dynamic MicroORM for .NET that will love you forever
Building a simple ToDo application with ASP.NET Identity and associating Users with ToDoes – .NET Web Development and Tools Blog – Site Home – MSDN Blogs
Siphon | Build and publish React Native apps without installing Xcode
A single codebase for your
iOS and Android app.
Build, run and publish with
the same simple commands.
Push instant over-the-air updates to your production apps.
Iterate faster and skip the
App Store approval queue.
Write your app in JavaScript
with React Native.
One consistent developer experience across both platforms.
About – Let’s Encrypt – Free SSL/TLS Certificates
QUnit – javascript unit testing
QUnit is used by jQuery and many more frameworks for unit testing javascript code.