About the author
Guess what? C# cannot use default parameters!
That's right!
Consider the code below.
Public Shared Function ComputeTotal(ByVal subtotal As Double, Optional ByVal salesTaxPrecent As Double = 8.8) As Double ComputeTotal = subtotal + subtotal * salesTaxPrecent / 100End Function
From either VB.NET, or Delphi, you can call it as ComputeTotal(100)
However, from C#, you need to call it as ComputeTotal(100, 8.8)
Learn why the map is cool in Go!
A method to design records so that they're allocated on a specific byte boundary, such as 16 bytes, 512 bytes, 4096 bytes, etc.
Learn the command line used to compile System.pas in Delphi
How to free more space on your home drive by redirecting the location for SDKs in RAD Studio