// //------------------------------------------------------------------------------
// //
// // Copyright © Dascoba Development 2010
// //
// //------------------------------------------------------------------------------
namespace Dascoba.Umb.FileManager.Support
{
using System;
using System.IO;
using System.Linq;
public static class Util
{
///
/// Shortened the string.
///
/// The value.
/// The max chars.
///
internal static string ShortenedString(string value, int maxChars)
{
if (value.Length > maxChars)
{
return value.Substring(0, maxChars) + "...";
}
return value;
}
}
}