Fan.Sys.Time.getHour C# (CSharp) Method

getHour() public method

public getHour ( ) : int
return int
        public int getHour()
        {
            return m_hour;
        }

Usage Example

Example #1
0
 internal DateTimeStr(string pattern, Locale locale, Time t)
 {
     this.pattern  = pattern;
       this.m_locale = locale;
       this.hour     = t.getHour();
       this.min      = t.getMin();
       this.sec      = t.getSec();
       this.ns       = t.getNanoSec();
 }
All Usage Examples Of Fan.Sys.Time::getHour