Hi,
I want to delete all valuse from words array at last.
string[] words = s.Split(',');
I want to delete all valuse from words array at last.
string[] words = s.Split(',');
listBox2.Items[i] = words[3];
-- Now i want to clear words array.
Thnaks
Darma
-- Now i want to clear words array.
Thnaks
Darma
Shivanand ArurPosted Oct 23, 2012, 5:20 AM
Please mark the answer as accepted if it helped!!!
Thanks!!!
Alok UniyalPosted Oct 23, 2012, 5:19 AM
Try this
for(int i=0;i
words[i]=string.empty
}
Santhosh Kumar JayaramanPosted Oct 23, 2012, 5:16 AM