IntList Class¶
Namespace: id3.Finger
Definition¶
Represents a list of ints.
class IntList
class IntList implements Finalizable
public partial class IntList
public class IntList implements AutoCloseable, Serializable
public class IntList
typedef struct id3FingerIntList *ID3_FINGER_INT_LIST;
Usage¶
intListInstance = id3finger.IntList()
Explicit destruction
# ...
del intListInstance
final intListInstance = sdk.IntList();
// ...
Explicit destruction
// ...
intListInstance.dispose()
using (var intListInstance = new IntList())
{
// ...
}
Explicit destruction
var intListInstance = new IntList()
// ...
intListInstance.Dispose()
try (IntList intListInstance = new IntList()) {
// ...
}
Explicit destruction
IntList intListInstance = new IntList();
// ...
intListInstance.close();
private var intListInstance: IntList? = nil
intListInstance = try IntList()
ID3_FINGER_INT_LIST hIntList{};
int err = id3FingerIntList_Initialize(&hIntList);
if (err == ID3_SUCCESS) {
// ...
id3FingerIntList_Dispose(&hIntList);
}
Properties¶
Name |
Type |
Description |
---|---|---|
int |
Gets the number of elements contained in the list |
|
operator [int index] |
int |
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 |
---|---|
Adds an item to the IntList object. |
|
Clears the IntList object. |
|
Gets an item of the IntList object. |
|
Gets the number of elements in the IntList object. |
|
Removes an element of the IntList object. |
|
IntList object. |
|
Sets an item of the IntList object. |