"count" (langString::count)

A member function of the langString data type. It returns the number of languages in the langString.

Synopsis

int langString.count();

Parameters

-

Return Value

The number of languages contained in the langString.

Description

The function returns the number of languages the langString contains.

Example

Makes a langString and returns its length.

main()
{
  dyn_string word;
  word[1] = "Information";
  word[2] = "information";  
  langString langWord = word;
  DebugN("Anzahl der Sprachen",langWord.count() );
}

Assignment

miscellaneous functions

Availability

CTRL