↧
Stack size
Make your own SizeControlledStack<> class, and implement it using the system's Stack<>. Then you can check if it gets too big.
View ArticleStack size
I wanted to control size of some Stack< > object. when its size is greater than for example 1000 i want either to throw an exception or some other actionhow can i control that?
View Article