public string getOutput(Time time) { return(getSeconds(time.getSeconds()) + Environment.NewLine + getHours(time.getHours()) + Environment.NewLine + getMinutes(time.getMinutes())); }
//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())); }