Esempio n. 1
0
        public void FillData(IListDataNode ListData, byte[] bytes, int StartLen)
        {
            int len = StartLen;

            this.FREQ = System.BitConverter.ToSingle(bytes, len); len = len + 4;
            this.FREQ2 = System.BitConverter.ToSingle(bytes, len); len = len + 4;

            ListData.GetDataNode(0).AddData(this.FREQ, -1);
            ListData.GetDataNode(1).AddData(this.FREQ2, -1);
        }
Esempio n. 2
0
        public void FillData(IListDataNode ListData, byte[] bytes, int StartLen)
        {
            int len = StartLen;

            this.FREQ  = System.BitConverter.ToSingle(bytes, len); len = len + 4;
            this.FREQ2 = System.BitConverter.ToSingle(bytes, len); len = len + 4;

            ListData.GetDataNode(0).AddData(this.FREQ, -1);
            ListData.GetDataNode(1).AddData(this.FREQ2, -1);
        }
Esempio n. 3
0
 public SiteBase(int ID, SiteBody body, IListDataNode ListData)
 {
     this.ID       = ID;
     this.body     = body;
     this.ListData = ListData;
 }
Esempio n. 4
0
 public 转速子站(int ID,SiteBody body, IListDataNode ListData)
     : base(ID,body, ListData)
 {
 }
Esempio n. 5
0
 public SiteBase(int ID,SiteBody body, IListDataNode ListData)
 {
     this.ID = ID;
     this.body = body;
     this.ListData = ListData;
 }
Esempio n. 6
0
 public 转速子站(int ID, SiteBody body, IListDataNode ListData) : base(ID, body, ListData)
 {
 }