We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
public static string Truncate(string value, int length) { string result = value; if (value != null) // Skip empty string check for elucidation { result = value.Substring(0, Math.Min(value.Length, length)); } return result; }