I am looking for a fast and effeciant way of assignning a string of characters to an array.

I have tried this and it works ..
Alpha = System.Text.RegularExpressions.Regex.Split( "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", "," )

but there must be a better way. This seems very clunky.

gollnick