Show
Ignore:
Timestamp:
04/12/09 00:56:38 (4 years ago)
Author:
hoge1e3
Message:

一覧表示高速化

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/soyText/soyText/TimeFormat.cs

    r31255 r32279  
    1111        { 
    1212            DateTime dtNow = DateTime.Now; 
    13             return  dtNow.ToString("yyMMdd_HHmmss"); 
     13            return format(dtNow); 
     14        } 
     15        public static String format(DateTime t) 
     16        { 
     17            return t.ToString("yyMMdd_HHmmss"); 
     18 
    1419        } 
    1520    }