I have CSV values stored in string as:
StringBuilder CSValue = new StringBuilder();
for (int i = 0; i < obj._contactNumbers.Count; i++)
{
CSValue.Append(obj._contactNumbers[i]);
if (i != obj._contactNumbers.Count - 1)
{
CSValue.Append(",");
}
}
I have passed it to stored procedure (as CSValue.ToString()), now i have to pick each value and store it in cell. How should i seperate these values??
Please help me out!