Beispiel #1
0
        static void Main(string[] args)
        {
            BinaryClock clock = new BinaryClock();

            while (true)
            {
                Console.Write(clock.GetTime2(3) + "\r");
            }//while
        }
Beispiel #2
0
 public static string[] TestBinaryClock(string time)
 {
     return(BinaryClock.GetTime(time));
 }