namespace TYTD.Mobile { public static class Extensions{ public static string GetValOrDefault(this string? str) { if(string.IsNullOrWhiteSpace(str)) return ""; return str; } } }