日記
StringCollectionとString()の相互変換 (18:59)Edit

って、いちいち、

dim sc as new StringCollection()
dim sa(sc.Count) as string
sc.CopyTo(sa, 0)

とか

dim sa(5) as string
dim sc as new StringCollection()
sc.AddRange(sa)

とかしないといけないの?

Published At2005-04-06 00:00Updated At2005-04-06 00:00