1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ant.Core.Extensions
- {
- public static partial class Extensions
- {
-
-
-
-
- public static string SafeString(this object input)
- {
- return input?.ToString().Trim() ?? string.Empty;
- }
- }
- }
|