Always, ALWAYS initialize!
Friday, October 20th, 2006What output would you expect from such a piece of code (VB.net, of course): Imports System.Globalization …. Dim CurrentCalendar As System.Globalization.Calendar = _ CultureInfo.CurrentUICulture.Calendar ‘We want to output all the dates in the current year for every month. For iMonth As Integer = 1 To 12 Dim sOutput As String ‘accumulate all the dates For [...]
