2016-08-28



alvinashcraft
shared this story
from Weekly C# Digest.

.net

Visual Studio “15” Preview 4

csharp, visualstudio

The highlight of this release is that nearly all of VS is running on the new setup engine, resulting in a smaller, faster and less impactful installation. The smallest install is less than 500 MB on disk (compared to 6GB in the previous release of Visual Studio).

Programmatically change Taskbar icon in WPF

csharp, wpf, xaml

Recently when I was working on one of my personal project in WPF. I added the ability to change themes for this WPF applications, but the difficulty that I faced was to change the Taskbar icon with respect to the theme.

Analysing Optimisations in the Wire Serialiser

csharp, performance, serialization, wire

Recently Roger Johansson wrote a post titled Wire – Writing one of the fastest .NET serializers, describing the optimisation that were implemented to make Wire as fast as possible.

What’s New in C# 7.0

csharp, csharp7

C# 7.0 adds a number of new features and brings a focus on data consumption, code simplification and performance. Perhaps the biggest features are tuples, which make it easy to have multiple results, and pattern matching which simplifies code that is conditional on the shape of data.

When Big O Fools Ya

csharp, compsci, performance

Big O notation is a great tool. It allows one to quickly make smart choices among various data structures and algorithms. But sometimes a casual Big O analysis can fool us if we don’t think carefully about the impact of constant factors. One such examples comes up very often when programming on modern CPUs, and that is when choosing between an Array, and a List, or Tree type structure.

Show more