Program.cs
838 字节
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnlineStore.LoadCSVLibrary
{
class Program
{
static void Main(string[] args)
{
string configFile = "config\\Config.csv";
var Config = new Robot_Config(0, "", configFile);
Config = (Robot_Config)CSVConfigReader.LoadConfig(Config);
string carReelPostionFile = "config\\CarReelPostion.csv";
string labellingPostionFile = "config\\LabellingPostion.csv";
var carReelPostion= CSVPositionReader<InCarReelPostion>.LoadCSVFile(carReelPostionFile);
var labellingPostion = CSVPositionReader<LabellingPostion>.LoadCSVFile(labellingPostionFile);
Console.Read();
}
}
}