๐ฉโ๐ป List to string ๅ ๅ ฅๅ้็ฌฆ่
void Main()
{
List<string> testList = new List<string>(){"a","z","c","d","x"};
string testStr = string.Join(",",testList);
testStr.Dump();
}
void Main()
{
List<string> testList = new List<string>(){"a","z","c","d","x"};
string testStr = string.Join(",",testList);
testStr.Dump();
}