mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 10:19:29 -06:00
15 lines
444 B
C#
15 lines
444 B
C#
namespace FileFlows.Pushbullet;
|
|
|
|
/// <summary>
|
|
/// Extension methods
|
|
/// </summary>
|
|
internal static class ExtensionMethods
|
|
{
|
|
/// <summary>
|
|
/// Returns an empty string as null, otherwise returns the original string
|
|
/// </summary>
|
|
/// <param name="str">the input string</param>
|
|
/// <returns>the string or null if empty</returns>
|
|
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
|
|
}
|