.NET, Philosophically
Posted November 18, 2009 by Chris | Filed under .NET
Question: Who deserves a kick in the nuts more—the Microsoft BCL developer who brilliantly decided to name his
public static class UriHelper { public static bool TryParse(string s, out Uri uri) { try { uri = new Uri(s); return true; } catch { uri = null; return false; } } }
Really, can you blame the guy? Who knows—maybe he knows better and is actually sticking a big FU to the MS man for deviating from the TryParse idiom. We can always hope.
Speaking of, .NET 4.0 is getting
Tags: humor