Hope somebody has a good idea. I have strings like this:
abcdefg abcde abc
What I need is for them to be trucated to show like this if more
Sure, here is some sample code:
string str = "abcdefg"; if (str.Length > X){ str = str.Substring(0, X) + "..."; }