StringArray Class

Namespace: id3.Bioseal

Definition

Represents an array of strings.
class StringArray
class StringArray implements Finalizable
public partial class StringArray
public class StringArray implements AutoCloseable, Serializable
public class StringArray
typedef struct id3BiosealStringArray *ID3_BIOSEAL_STRING_ARRAY;

Usage

stringArrayInstance = id3bioseal.StringArray()

Explicit destruction

# ...
del stringArrayInstance
final stringArrayInstance = sdk.StringArray();
// ...

Explicit destruction

// ...
stringArrayInstance.dispose()
using (var stringArrayInstance = new StringArray())
{
   // ...
}

Explicit destruction

var stringArrayInstance = new StringArray()
// ...
stringArrayInstance.Dispose()
try (StringArray stringArrayInstance = new StringArray()) {
// ...
}

Explicit destruction

StringArray stringArrayInstance = new StringArray();
// ...
stringArrayInstance.close();
private var stringArrayInstance: StringArray? = nil
stringArrayInstance = try StringArray()
ID3_BIOSEAL_STRING_ARRAY hStringArray{};
int err = id3BiosealStringArray_Initialize(&hStringArray);
if (err == ID3_SUCCESS) {
    // ...
    id3BiosealStringArray_Dispose(&hStringArray);
}

Properties

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

string

Gets or sets the element at the specified index in the list.

Iteration

This class supports iteration in Dart, C#, Java and Python.

Methods

Name

Description

contains

Returns a value indicating whether a specified string occurs in this string array.

get

Gets an item of the StringArray object.

getCount

Gets the number of elements in the StringArray object.