I hope everyone in California is planning to attend this years Central Coast Code Camp up in San Luis Obispo on 9/27 - 6/28. It's always a great time and lots of free training! I will also be selling a limited number of my latest book "David McCarter's .NET Coding Standards" at my sessions for $11, … Continue reading Central Coast Code Camp
Category: Defensive Programming
Verify That An Array Is Valid
Here is some simple code to validate that an array is valid. Before trying to use an array, you should always validate it with this code first. Public Shared Function IsValidArray(ByVal array As Array) As Boolean Dim valid As Boolean = False If array Is Nothing Then … Continue reading Verify That An Array Is Valid
