mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 10:10:49 +08:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Windows.Storage;
|
|
|
|
namespace UWP.CartesianChart.Linq
|
|
{
|
|
public static class DataBase
|
|
{
|
|
public static City[] Cities { get; private set; }
|
|
|
|
public static async Task Initialize()
|
|
{
|
|
var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///cities.csv"));
|
|
var stream = await file.OpenStreamForReadAsync();
|
|
var reader = new StreamReader(stream);
|
|
|
|
var read = new List<City>();
|
|
|
|
while (!reader.EndOfStream)
|
|
{
|
|
var line = reader.ReadLine();
|
|
if (line != null)
|
|
{
|
|
var values = line.Split(',');
|
|
|
|
read.Add(new City
|
|
{
|
|
Name = values[0],
|
|
Population = double.Parse(values[1], CultureInfo.InvariantCulture),
|
|
Area = double.Parse(values[2], CultureInfo.InvariantCulture),
|
|
Country = values[3]
|
|
});
|
|
}
|
|
}
|
|
|
|
Cities = read.ToArray();
|
|
}
|
|
}
|
|
}
|