BotSharp/src/Infrastructure/BotSharp.Abstraction/Utilities/StringExtensions.cs

8 lines
222 B
C#
Raw Normal View History

2023-07-21 15:15:30 +00:00
namespace BotSharp.Abstraction.Utilities;
public static class StringExtensions
{
public static string IfNullOrEmptyAs(this string str, string defaultValue)
=> string.IsNullOrEmpty(str) ? defaultValue : str;
}