ByteConverter library has a HexToBytes method that will give you an array of Byes that you could then convert to Ints if you really need Ints, remembering that byte values are -128 to 127 so you would need to mask them if you want values from 0 to 255
Dim BC As ByteConverter
Dim s As String = "12FF238511"
Dim ByteArray(0) As Byte = BC.HexToBytes(s)
Dim IntArray(ByteArray.Length) As Int
For i = 0 To ByteArray.Length - 1
IntArray(i) = Bit.And(ByteArray(i), 0xff)
Next