Ejemplo n.º 1
0
 /*
  *  Function Name: ToString()
  *  Description:
  *      Return the string value of the "Row" which are the values EncID, ID,
  *      QuestionID, Text, and NextEID concantenated
  *
  *  Params:     None
  *  Returns:    -> string
  */
 public override string ToString()
 {
     return(EncID.ToString() + "\t" + ID.ToString() + "\t" + QuestionID.ToString()
            + "\t" + Text + "\t" + NextEID.ToString());
 }
Ejemplo n.º 2
0
 /*
  *  Function Name: ToString()
  *  Description:
  *      Return the string value of the "Row" which are the values EncID, ID, and Text concantenated
  *
  *  Params:     None
  *  Returns:    -> string
  */
 public override string ToString()
 {
     return(EncID.ToString() + "\t" + ID.ToString() + "\t" + Text);
 }