I am wondering if there is a representation of the maximum length of a string in C#.
The same way there is for String.Empty but for the maximum length. Thing is I am writing some integration tests and I am testing with the same test (different inputs) the same piece of code. I don't want to use a:
var myString = "I have to make a string longer than 200 characthers to see if my test works".
I would like to have a representation of such string but couldn't find any.