1
0
mirror of synced 2024-12-18 04:45:55 +01:00
TaikoSoundEditor/Commons/Utils/ProcessArgs.cs

14 lines
365 B
C#
Raw Normal View History

2023-10-01 18:40:41 +02:00
using System.Collections.Generic;
using System.Linq;
namespace TaikoSoundEditor.Commons.Utils
{
public static class ProcessArgs
{
public static string GetString(params string[] args)
{
return string.Join(" ", args.Select(_ => _.Contains(" ") ? $"\"{_}\"" : _)); // does NOT support "something \" like this"
}
}
}