예제 #1
0
        public override string ToString()
        {
            string aidText = null;

            if (this.AidKey != null)
            {
                aidText = this.AidKey.Value.ToString();
            }
            else
            {
                aidText = "Invalid aid byte " + this.AidByte.ToHex();
            }

            return("Row:" + RowNum.ToString() + " Column:" + ColNum.ToString()
                   + " AID: " + aidText);
        }
예제 #2
0
 public string[] ToArray()
 {
     return(new string[] { this.ToString(), PFName, PFNum.ToString(), RobotTask, Operation, Geoset, RowNum.ToString() });
 }
예제 #3
0
 public string OutPut()
 {
     return(this.ToString() + "," + PFName + "," + PFNum.ToString() + "," + RobotTask + "," + Operation + "," + Geoset + "," + RowNum.ToString());
 }