Beispiel #1
0
    /// <summary>
    /// May or may not be used, I imagine this could be useful in a custom save routine
    /// </summary>
    /// <returns>An encoded string of this Message to match the formatting of our MessageData file</returns>
    public override string ToString()
    {
        string returnThis = messageContent;

        returnThis += ",";
        returnThis += messageType.ToString();
        returnThis += ",";
        returnThis += senderType.ToString();
        returnThis += "\n";

        return(returnThis);
    }
 public override string ToString()
 {
     return(SenderType.ToString() + " - " + TextoMensaje);
 }