FIC_Solar/solarApp/Service/myHelper.cs
2021-08-06 11:04:32 +08:00

21 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace solarApp.Service
{
//static class myHelper
//{
//}
public static class ListHelper
{
public static string ToSiteTable(this IList<String> list)
{
return string.Join(", ", list.ToArray());
}
}
}