I'm a full-stack C#/ASP.NET developer and software architect at a Fortune 500 financial services company.
Some interesting questions I've answered:
- How can “x & y” be false when both x and y are true? Explaining a bug(?) in the C# compiler
- Simulate VBA arithmetic in .NET: Why
CLng(0.025 * 100)
returns different results in VBA vs. VB.NET - IEnumerable and Recursion using yield return: How to efficiently
yield return
with recursion