11 lines
No EOL
310 B
C#
11 lines
No EOL
310 B
C#
namespace EnvyUpdate
|
|
{
|
|
public static class StringExt
|
|
{
|
|
public static string Truncate(this string value, int maxLength)
|
|
{
|
|
if (string.IsNullOrEmpty(value)) return value;
|
|
return value.Length <= maxLength ? value : value.Substring(0, maxLength);
|
|
}
|
|
}
|
|
} |