ISInterface:IsAvailable

From Lavish Software Wiki
Jump to navigation Jump to search

Syntax

  • bool IsAvailable()
Note: This is so named because it will be a member function of a separate interface, which is inherited by ISInterface.

Purpose

Checks if .NET 2.0 functionality is already initialized.

Usage

Parameters

none

Return Value

  • bool
true if .NET 2.0 functionality is already initialized.

Examples

Example code
if (pISInterface->IsAvailable())
{
  printf(".NET 2.0 functionality is available (already loaded!)");
}

See Also