Files
CMLeonOS/shell/Commands/System/ClearCommand.cs

13 lines
194 B
C#
Raw Normal View History

2026-02-04 22:09:01 +08:00
using System;
namespace CMLeonOS.Commands.System
{
public static class ClearCommand
{
public static void ProcessClear()
{
Console.Clear();
}
}
}