int maxLength = 160;//限制最大字符数,如果str超出这个数字,则显示省略号 string Str = Str.Length > maxLength ? Str.Substring(0, maxLength) + "..." : Str;
C# 字符串过长显示省略号
原文:https://www.cnblogs.com/cynthia0706/p/13969924.html