mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-04-24 03:24:00 +00:00
13 lines
194 B
C#
13 lines
194 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CMLeonOS.Commands.System
|
||
|
|
{
|
||
|
|
public static class ClearCommand
|
||
|
|
{
|
||
|
|
public static void ProcessClear()
|
||
|
|
{
|
||
|
|
Console.Clear();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|