Вопрос

I'm building large (>25,000 rows) Tables.

I receive the dreaded Overflow or underflow error somewhere above 25,000 rows.

I've tried to reset with psuedo

Table = Nothing
Table = New Table
Table.Rows.Clear()

Now, the reset line is referenced in the trace for the same error.

How should this problem be handled?

Это было полезно?

Решение

Try calling the garbage collector:

GC.Collect()
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top