コード例 #1
0
ファイル: ChatLine.cs プロジェクト: derrickcreamer/Floe
		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);
		}
コード例 #2
0
 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);
 }
コード例 #3
0
ファイル: ChatLine.cs プロジェクト: ryanflannery/Floe
 public ChatLine(string colorKey, int nickHashCode, string nick, string text, ChatMarker decoration)
     : this(colorKey, DateTime.Now, nickHashCode, nick, text, decoration)
 {
 }
コード例 #4
0
ファイル: ChatLine.cs プロジェクト: derrickcreamer/Floe
		public ChatLine(string colorKey, int nickHashCode, string nick, string text, ChatMarker decoration)
			: this(colorKey, DateTime.Now, nickHashCode, nick, text, decoration)
		{
		}