skip to main content

kiesler.at

Frequently Asked Questions

View Suggest a FAQ  


The ad will go away if you log in.


Q:   How to reset an array (remove all elements from the array).

A: You need a custom function to do that (KB 5304)

public function clear_array (inout array_2clear[]) {
auto j;
for (j in array_2clear)
delete array_2clear[j];
return E_OK;
}

How helpful was this FAQ?




RSSComments - Make a comment
The comments are owned by the poster. We are not responsible for its content.