Skip to content

Instantly share code, notes, and snippets.

@ddikman
Created September 15, 2016 02:42
Show Gist options
  • Save ddikman/e7898138aa82995003c84852b601a7de to your computer and use it in GitHub Desktop.
Save ddikman/e7898138aa82995003c84852b601a7de to your computer and use it in GitHub Desktop.
Helper extension method to cut a string down to a certain length.
public static class ShortenStringExtension
{
public static string Shorten(this string input, int maxLength)
{
if (string.IsNullOrEmpty(input))
return input;
return input.Length <= maxLength ? input : input.Substring(0, maxLength);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment