C#C
C#3y ago
thieved

`System.String` doesn't have the `Substring` method or something is weird about this string??

i've even tried this
description.Length > 2043 ? description[0 .. 2043] : description;


but here's my substring operation:

description.Substring(0, 2043);


it works for some returned strings but not all????
Was this page helpful?