if you want to split it in a list of strings then you can use String.Split function.
string[] splitted = str.Split(',');
solved How to use Substring function in C# [duplicate]
if you want to split it in a list of strings then you can use String.Split function.
string[] splitted = str.Split(',');
solved How to use Substring function in C# [duplicate]