2009/12/13(Sun) 14:14:01 編集(投稿者)
String.Splitで','区切りで三つに分離し、
それぞれをInteger.ParseでInteger化すればいんじゃね?
Module Program
Sub Main()
Dim input As String = "12,34,56"
Dim colors As String() = input.Split( New Char() { ","c } )
Console.WriteLine("R:{0}, G:{1}, B:{2}", _
Integer.Parse(colors(0)), Integer.Parse(colors(1)), Integer.Parse(colors(2)) )
End Sub
End Module