Exemple #1
0
 /// <summary>
 /// Converts a Contact object into a comma separated values string to make it easier to save the stored properties in a CSV file.
 /// </summary>
 /// <returns>CSV string of all properites stored.</returns>
 public override string ToCSV()
 {
     return(base.ToCSV() + "," + User1.ToCSV() + "," + User2.ToCSV());
 }