makeDT() 정적인 개인적인 메소드

static private makeDT ( Fan.Sys.Date d, Time t ) : DateTime
d Fan.Sys.Date
t Time
리턴 DateTime
예제 #1
0
파일: Date.cs 프로젝트: syatanic/fantom
 public DateTime midnight(TimeZone tz)
 {
     return(DateTime.makeDT(this, Time.m_defVal, tz));
 }
예제 #2
0
파일: Date.cs 프로젝트: syatanic/fantom
 public DateTime midnight()
 {
     return(DateTime.makeDT(this, Time.m_defVal));
 }
예제 #3
0
파일: Date.cs 프로젝트: syatanic/fantom
 public DateTime toDateTime(Time t, TimeZone tz)
 {
     return(DateTime.makeDT(this, t, tz));
 }
예제 #4
0
파일: Date.cs 프로젝트: syatanic/fantom
 public DateTime toDateTime(Time t)
 {
     return(DateTime.makeDT(this, t));
 }
예제 #5
0
파일: Time.cs 프로젝트: syatanic/fantom
 public DateTime toDateTime(Date d, TimeZone tz)
 {
     return(DateTime.makeDT(d, this, tz));
 }
예제 #6
0
파일: Time.cs 프로젝트: syatanic/fantom
 public DateTime toDateTime(Date d)
 {
     return(DateTime.makeDT(d, this));
 }