mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-04-24 03:24:00 +00:00
20 lines
376 B
C#
20 lines
376 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CMLeonOS.Commands.Utility
|
||
|
|
{
|
||
|
|
public static class PromptCommand
|
||
|
|
{
|
||
|
|
public static void ChangePrompt(string args, ref string prompt)
|
||
|
|
{
|
||
|
|
if (!string.IsNullOrEmpty(args))
|
||
|
|
{
|
||
|
|
prompt = args;
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
prompt = "/";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|