mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-04-21 19:24:00 +00:00
13 lines
219 B
C#
13 lines
219 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CMLeonOS.Commands.System
|
||
|
|
{
|
||
|
|
public static class TimeCommand
|
||
|
|
{
|
||
|
|
public static void ProcessTime()
|
||
|
|
{
|
||
|
|
Console.WriteLine(DateTime.Now.ToString());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|