public static class ClassExtensions { public static string GetProperDispCode(this string s) { return string.IsNullOrWhiteSpace(s) ? string.Empty : s; } }
Login to post response