Joe Albahari’s talk “What I’ve learned from 20 years of programming in C#” from Wednesday is available on YouTube. Starts around 35:13
Code
C# Code Snippet: Strip All HTML Tags
A quick code snippet to strip all HTML tags using a regular expression. If you are going to call something like this often, then it might be an idea to set the RegEx.Options to Compiled.
using System.Text.RegularExpressions;
…