1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| namespace IStation.Test
| {
| internal class Program
| {
|
|
|
| // 过滤无效数据
| // 1输模型修正
| // 2输数据修正
| // 修正组合偏差
| static void Main(string[] args)
| {
| Station2Helper.Start();
| Console.WriteLine();
| Console.WriteLine();
| Console.WriteLine("ok");
| Console.ReadKey();
| }
|
|
|
|
| }
|
| }
|
|