2025-03-11 15:30:07 +08:00

15 lines
304 B
C#

using System;
namespace Unity.Cloud.Collaborate.Utilities
{
static class StringUtility
{
public static string TrimAndToLower(string value)
{
return string.IsNullOrEmpty(value)
? string.Empty
: value.Trim().ToLower();
}
}
}