' Add or subtract a number of business days from a date' Example: Debug.WriteLine(BusinessDateAdd(#4/9/2003#, 5)) ' => 4/16/2003Function BusinessDateAdd(ByVal startDate As Date, ByVal days As Integer, _ Optional ByVal saturdayIsHoliday As Boolean = True) As Date Do While days ' increment or decrement the date startDate = startDate.AddDays(Math.Sign(days)) ' check that it is a week day If startDate.DayOfWeek <> DayOfWeek.Sunday AndAlso (startDate.DayOfWeek _ <> DayOfWeek.Saturday Or Not saturdayIsHoliday) Then ' days becomes closer to zero days -= Math.Sign(days) End If Loop Return startDateEnd Function

The Future of iOS App Development: Trends to Watch
When it launched in 2008, the Apple App Store only had 500 apps available. By the first quarter of 2022, the store had about 2.18 million iOS-exclusive apps. Average monthly app releases for the platform reached 34,000 in the first half of 2022, indicating rapid growth in iOS app development.