testss
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user