Esempio n. 1
0
 public string getOutput(Time time)
 {
     return(getSeconds(time.getSeconds()) + Environment.NewLine + getHours(time.getHours()) + Environment.NewLine + getMinutes(time.getMinutes()));
 }
Esempio n. 2
0
 //Accepts Time Object to Output Berlin Clock Format String - L to R
 public String GetOutput(Time time)
 {
     return(getSeconds(time.getSeconds()) + " " + getHours(time.getHours()) + " " + getMinutes(time.getMinutes()));
 }