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); }
public string[] ToArray() { return(new string[] { this.ToString(), PFName, PFNum.ToString(), RobotTask, Operation, Geoset, RowNum.ToString() }); }
public string OutPut() { return(this.ToString() + "," + PFName + "," + PFNum.ToString() + "," + RobotTask + "," + Operation + "," + Geoset + "," + RowNum.ToString()); }