20 lines
515 B
C#
20 lines
515 B
C#
using AS1024.GeoFeed.Models;
|
|
using System.Text;
|
|
|
|
namespace AS1024.GeoFeed.GeoFeedBuilder
|
|
{
|
|
public static class GeoFeedTools
|
|
{
|
|
public static string ToGeoFeedCsv(this List<IPGeoFeed> geoFeeds)
|
|
{
|
|
StringBuilder csvContent = new();
|
|
|
|
foreach (var feed in geoFeeds)
|
|
{
|
|
csvContent.AppendLine($"{feed.Prefix},{feed.GeolocCountry},{feed.GeolocRegion},{feed.GeolocCity},");
|
|
}
|
|
|
|
return csvContent.ToString();
|
|
}
|
|
}
|
|
} |