Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum size of Scripting.Dictionary?

I am trying to find what is the upper limit of Scripting.Dictionary? Is there one?

It could be either limit on number of elements or size of memory. I could not trace any info on that.

like image 409
Juliusz Avatar asked Mar 11 '13 15:03

Juliusz


1 Answers

From everything I've ever encountered (and can't seem to find any documentation to contradict this), the dictionary has no implicit upper limit and is only limited by the amount of memory you have available.

like image 146
John Bustos Avatar answered Oct 03 '22 01:10

John Bustos