D DaveF Dec 8, 2004 #1 how do I build an ILIST from comma seperated strings and send the ilist to the method
K Karl Seguin Dec 8, 2004 #2 public sub MyFunction(list as IList) .... end sub dim str as string = "123,456,789" MyFunction(str.Split(",")) Karl
public sub MyFunction(list as IList) .... end sub dim str as string = "123,456,789" MyFunction(str.Split(",")) Karl