mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-06 09:16:37 +08:00
项目结构调整
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
|
||||
namespace Winforms.Cartesian.Linq
|
||||
{
|
||||
public static class DataBase
|
||||
{
|
||||
static DataBase()
|
||||
{
|
||||
var reader = new StreamReader(File.OpenRead(@"cities.csv"));
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
public static City[] Cities { get; private set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user