Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public static string ShortVersion(this String str)
  2. {
  3. if (str.Length < 25)
  4. return str;
  5.  
  6. return (str.Substring(0,25) + "...");
  7. }
Add Comment
Please, Sign In to add comment