21 lines
360 B
C#
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());
|
|
}
|
|
}
|
|
}
|