How to divaded one number to digits and save every digit in variable

FYI, if your input is integer type and need to get result as integer, the following will work.

arrInt = 456834.ToString.Select(Function(c) CInt(c.ToString)).ToArray

Then

arrInt(0) returns 4
arrInt(1) returns 5

Regards,