コード例 #1
0
ファイル: PathHelpers.cs プロジェクト: ajbadaj/AJut
 public static string ShortenPath(this string This, int maxLength, eStringShortening shortenWhere, string removedCharactersIndicator)
 {
     return(StringXT.StringShortenerWorkhorse(This, maxLength, true, shortenWhere, removedCharactersIndicator));
 }
コード例 #2
0
ファイル: PathHelpers.cs プロジェクト: ajbadaj/AJut
 public static string ShortenPath(this string This, int maxLength, eStringShortening shortenWhere)
 {
     return(StringXT.StringShortenerWorkhorse(This, maxLength, true, shortenWhere, "..."));
 }