コード例 #1
0
ファイル: LogEntryList.cs プロジェクト: Terracorrupt/duality
			public ViewEntry(DataLogOutput.LogEntry log)
			{
				this.log = log;
			}
コード例 #2
0
ファイル: LogEntryList.cs プロジェクト: Banbury/duality
			public ViewEntry(LogEntryList parent, DataLogOutput.LogEntry log)
			{
				this.parent = parent;
				this.log = log;
				this.msgLines = log.Message.Split(new string[] { Environment.NewLine }, StringSplitOptions.None).Length;
			}