Is there a way to use something like this:
private const int MaxTextLength = "Text i want to use".Length;
Imho it would be better readable and error prone then using something like:
private const int MaxTextLength = 18;
Are there any ways to have the length of the text as source for a constant variable?