mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
15 lines
413 B
C#
15 lines
413 B
C#
namespace ServerManagerTool.Updater
|
|
{
|
|
public static class ScriptUtils
|
|
{
|
|
public static string AsQuoted(this string parameter)
|
|
{
|
|
var newValue = parameter;
|
|
if (!newValue.StartsWith("\""))
|
|
newValue = "\"" + newValue;
|
|
if (!newValue.EndsWith("\""))
|
|
newValue = newValue + "\"";
|
|
return newValue;
|
|
}
|
|
}
|
|
}
|