LongoMatch.LogEntry.LogEntry C# (CSharp) Метод

LogEntry() приватный Метод

private LogEntry ( LogEntryType type, string message, string details ) : System
type LogEntryType
message string
details string
Результат System
        internal LogEntry(LogEntryType type, string message, string details)
        {
            this.type = type;
            this.message = message;
            this.details = details;
            this.timestamp = DateTime.Now;
        }
LogEntry