mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
10 lines
No EOL
243 B
C#
10 lines
No EOL
243 B
C#
namespace FFMpegCore.Extend
|
|
{
|
|
internal static class StringExtensions
|
|
{
|
|
public static string EncloseIfContainsSpace(this string input)
|
|
{
|
|
return input.Contains(" ") ? $"'{input}'" : input;
|
|
}
|
|
}
|
|
} |