You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
536 B
21 lines
536 B
|
|
namespace MediaBrowser.Model.Extensions
|
|
{
|
|
/// <summary>
|
|
/// Class ModelExtensions
|
|
/// </summary>
|
|
static class ModelExtensions
|
|
{
|
|
/// <summary>
|
|
/// Values the or default.
|
|
/// </summary>
|
|
/// <param name="str">The STR.</param>
|
|
/// <param name="def">The def.</param>
|
|
/// <returns>System.String.</returns>
|
|
public static string ValueOrDefault(this string str, string def = "")
|
|
{
|
|
return string.IsNullOrEmpty(str) ? def : str;
|
|
}
|
|
}
|
|
}
|