コード例 #1
0
 private static string GetSimpleLogEntryCsvEntry(ILogEntry l)
 {
     return(string.Format("{0},{1},{2},{3}" + ',' * 11,
                          l.GetCreatedAt(), l.GetLogEntryType(), l.GetFullInfo(), l.GetDirection()));
 }
コード例 #2
0
 private static string GetSimpleLogEntryCsvEntry(ILogEntry l)
 {
     return(string.Format(
                $"{l.GetCreatedAt()},{l.GetLogEntryType()},{l.GetFullInfo()},{l.GetDirection()}" +
                ',' * 11 + "\r\n"));
 }