2021-06-25 07:50:12 -04: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();
}
}
}