Lets say I have a string that contains multiple values:
private string serverList = "Server 1, Server 2, Server 3";
Is it possible to add these values into a list? Clearly if I just use List.Add(serverList); I will get all 3 as a single element. What I need is 3 separate elements for serverList.