HelperFunctionsInitializeHelperFunctions Method |
This method initializez the HelperFunctions Static Class. If this is not called, the default settings will be assumed.
Namespace:
AHL
Assembly:
AHL (in AHL.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void InitializeHelperFunctions(
bool autoCorrectErrors = false
)
Public Shared Sub InitializeHelperFunctions (
Optional autoCorrectErrors As Boolean = false
)
public:
static void InitializeHelperFunctions(
bool autoCorrectErrors = false
)
static member InitializeHelperFunctions :
?autoCorrectErrors : bool
(* Defaults:
let _autoCorrectErrors = defaultArg autoCorrectErrors false
*)
-> unit
Parameters
- autoCorrectErrors (Optional)
- Type: SystemBoolean
If this is set to true, HelperFunctions will try to solve all possible exception automatically, suppressing them and trying for the best default solution. If this is false, when an exception will be thrown each time. Default value = false
See Also