i have a string like One,Two ,three
I want a string like '"One","Two","Three"'
After getting the value you can replace like as i have already provided.
string CusineValue = string.Join(",", CusineType); CusineValue = "'\"" + CusineValue.Replace(",", "\",\"") + "\"'";
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.