コード例 #1
0
 private string GeneratorMessage(LogLevel loglevel, string message)
 {
     return(string.Format("{0} {1} {2}", TimeUtils.FormatTimeHMS(DateTime.Now), loglevel, message));
 }
コード例 #2
0
ファイル: ObjectPools.cs プロジェクト: ByteKay/Nullspace
 public bool IsExpired(float life)
 {
     return(TimeUtils.GetTimeStampSeconds() - ReleasedTimePoint >= life);
 }