ISInterface:TryInitialize

From Lavish Software Wiki
Jump to navigation Jump to search

Syntax

  • bool TryInitialize()
Note: This is so named (without an apparent reference to .NET) because it will be a member function of a separate interface, which is inherited by ISInterface.

Purpose

Attempts to initialize .NET 2.0 functionality.

Usage

Parameters

none

Return Value

  • bool
true if .NET 2.0 functionality is successfully initialized already, or as a result of this function call.

Examples

Example code
if (pISInterface->TryInitialize())
{
  printf(".NET 2.0 functionality is initialized (may have been initialized earlier)");
}

See Also