makeDT() static private method

static private makeDT ( Fan.Sys.Date d, Time t ) : DateTime
d Fan.Sys.Date
t Time
return 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));
 }