Integer sequence: Difference between revisions

Content deleted Content added
No edit summary
Line 405:
The CLS supported type (also a structure) is <i>Decimal</i> (an even more impressive range from positive 79 228 162 514 264 337 593 543 950 335 to negative 79 228 162 514 264 337 593 543 950 335), I have used a standard CLS <i>Integer</i> intrinsic type (from -2 147 483 648 through 2 147 483 647).
 
Note that attempting to store any value larger than the maximum value of any given type (say 21474836482 147 483 648 for an Integer) will result in an OverflowException being thrown (<i>"Arithmetic operation resulted in an overflow."</i>)
 
<lang vbnet> For i As Integer = 0 To Integer.MaxValue