You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling json_positions_list.Clear() will also free the memory of the internals json_position elements?
Should I iterate of json_positions_list and free the memory one by one?
I want to get rid of json_positions_list memory entirely, would a delete json_positions_list works? I read that the delete command only works when the object is created using the new statement,
I know that there is the
.Clear()
method to call, but how should I do when I have nested structures like this:Calling
json_positions_list.Clear()
will also free the memory of the internalsjson_position
elements?Should I iterate of
json_positions_list
and free the memory one by one?I want to get rid of
json_positions_list
memory entirely, would adelete json_positions_list
works? I read that thedelete
command only works when the object is created using thenew
statement,@vivazzi Any help is appreciated, Thanks!
The text was updated successfully, but these errors were encountered: