Prev | July 2016 | Next | |||||
W | S | M | T | W | T | F | S |
27 | 26 | 27 | 28 | 29 | 30 | 1 | 2 |
28 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
29 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
30 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
31 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
32 | 31 | 1 | 2 | 3 | 4 | 5 | 6 |
Want to receive every Tuesday the best .NET links?
Once subscribed you can login, submit a link and receive the weekly newsletter.
by bill-s, 2016-07-23T07:13:11.000Z
When you are running your code and something is behaving unexpectedly, how do you find out what is going wrong? When I was in school the first way I learned how to debug a wonky application was by sticking “print()” statements all over the place, running my code, and looking back through the log of output seeing if I noticed that something looked wrong. Then if I wanted to look at the value of another variable I would have to add a new “print()” statement, recompile, and re-run the application again. This can be a tedious process, so I am pleased to tell you there is a better way than littering your code with a slew of “print()” statements you’ll have to remove later. You can use the tools of the Visual Studio debugger to inspect variables on the fly.by bill-s, 2016-07-23T22:17:37.000Z
This article covers how you can get started with using F# on .NET Core with the ..NET Core SDK 1.0 Preview 2. It will go through building a multi-project solution with a Class Library, a Console App, and an xUnit test project.by bill-s, 2016-07-23T07:13:57.000Z
I'm very enjoying the "dotnet" command line. Mostly I do "dotnet new" and then add to the default Hello World app with the <a href="http://code.visualstudio.com/">Visual Studio Code editor</a>. Recently, though, I realized that the -t "type" and -l "lang" options are there and I wasn't use them.by bill-s, 2016-07-23T22:15:36.000Z
.NET Core RC2 is finally here, and this time it is, in fact, a true “Release Candidate” rather than an RC1 Beta masquerading as a release candidate (if that, considering all the changes that happened after it came out).by bill-s, 2016-07-23T07:12:42.000Z
On ASP.NET Core view components support dependency injection. We can use some DI/IoC container but we can also go with framework level dependency injection. This blog post explains how dependency injection works with view components and as an example I show you some code I’m using for top menu of my demo site.by bill-s, 2016-07-23T22:17:02.000Z
Dive into the world of ASP.NET MVC and learn how to build easy-to-maintain web applications with the MVC design pattern and ASP.NET Core.by bill-s, 2016-07-23T07:11:56.000Z
One of our major focuses in Visual Studio ‘15′ is improving developer productivity inside the editor. As we develop, we all perform series of actions over and over again–like writing methods, renaming variables, changing method signatures, implementing interfaces, etc. Our goal is to help automate or reduce these tasks to a single click so that you can focus on logic rather than syntax, references, style, and formatting. You may have noticed each Visual Studio ‘15’ release enhances existing experiences to save you a little more time and effort and enables you to build faster with additional refactorings and code generation.by bill-s, 2016-07-23T22:16:25.000Z
In this Windows 10 developer training video, investigate common UI patterns. Plus, see how to implement navigation methods in your Windows 10 apps.by bill-s, 2016-07-23T22:16:00.000Z
More often than not, applications work with data. This is true not only for desktop and Web applications, but also for mobile apps.