public ChatLine(string colorKey, DateTime time, int nickHashCode, string nick, string text, ChatMarker decoration) { this.ColorKey = colorKey; this.Time = time; this.NickHashCode = nickHashCode; this.Nick = nick; this.Marker = decoration; this.RawText = text; this.Process(text); }
public ChatLine(string colorKey, int nickHashCode, string nick, string text, ChatMarker decoration) : this(colorKey, DateTime.Now, nickHashCode, nick, text, decoration) { }