string.Join的第二个参数(List<string>)改成ToArray

pull/3305/head
小仙女 2023-02-17 22:06:17 +08:00
parent a23cb95a10
commit b27c7fb2dd
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ namespace v2rayN
} }
else else
{ {
return string.Join(",", lst); return string.Join(",", lst.ToArray());
} }
} }
catch (Exception ex) catch (Exception ex)