Pinned Loading
-
-
-
Extension method to add ellipsis at ...
Extension method to add ellipsis at the end of a string if it is too big. 1private const string EllipsisString = "…";
2public static string Ellipsis(this string str, int maxChars, bool breakOnNewLine = false) {
3if (maxChars < 1) {
4throw new ArgumentOutOfRangeException(nameof(maxChars), "maxChars must be 1 or more.");
5}
-
Minimalist sample: ORMLite does not ...
Minimalist sample: ORMLite does not properly serialize structs. 1using System;
2using System.Globalization;
3using System.Linq;
4using System.Threading;
5using ServiceStack;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.