IsNullOrEmptyThenValue
برای حل مشکل مقدار پیشفرض وقتی مقداری وجود ندارد
Source
public static string IsNullOrEmptyThenValue(this string str, string value)
{
if (string.IsNullOrEmpty(str))
return value;
else
return str;
}
Example
"".IsNullOrEmptyThenValue("mohsen") = "mohsen"
"ali".IsNullOrEmptyThenValue("mohsen") = "ali"