I have a comma separated string and I want to load all values into checkedlistbox control of my windows application in C#............. how do I do that....
1. Read up on the string type in the MSDN Library so you can be familiar with all its methods.
2. Notice that one of those methods is the .Split() method
3. Use that .Split() method to break up your string on all the commas
Comment