1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
saviour-backup-system/Saviour Backup System/tools.cs

21 lines
431 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Saviour_Backup_System
{
class tools
{
2014-07-31 15:34:24 +01:00
internal static string Trim(string value, int maxLength)
{
if (value.Length > maxLength)
{
2014-07-31 15:34:24 +01:00
return value.Substring(0, maxLength - 3) + "...";
}
return value;
}
}
}