jace.tang
2022-06-17 9bc010fc2b51ff02d1f7d09accc2847e3d925777
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
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Runtime.Serialization;
 
namespace M423project
{
    public struct DetectValues
    {
        public double Height { get; set; }
        public double Length { get; set; }
        public double Width { get; set; }
    }
 
    [Serializable]
    public class DetectCompensation
    {
        private string fileName = string.Empty;
 
        private DetectValues[] PlateCompList = new DetectValues[5];
 
        public DetectCompensation(string _fileName)
        {
            fileName = _fileName;
 
        }
 
 
    }
}