C
Chirag
Is there a master define that I can toggle to disable exceptions? I
would rather not use asserts. I would also like to avoid the following
clunky syntax:
#If DEBUG Then
If array.Count <> m_numDimensions Then
Throw New ApplicationException("Invalid number of dimensions")
End If
#End If
Any elegant techniques out there that won't clutter code?
Thanks,
Chirag
would rather not use asserts. I would also like to avoid the following
clunky syntax:
#If DEBUG Then
If array.Count <> m_numDimensions Then
Throw New ApplicationException("Invalid number of dimensions")
End If
#End If
Any elegant techniques out there that won't clutter code?
Thanks,
Chirag