mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
13 lines
228 B
C#
13 lines
228 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CMLeonOS.Commands.System
|
||
|
|
{
|
||
|
|
public static class DateCommand
|
||
|
|
{
|
||
|
|
public static void ProcessDate()
|
||
|
|
{
|
||
|
|
Console.WriteLine(DateTime.Now.ToShortDateString());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|