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?

link|improve this question

80% accept rate
2  
"constant variable"? – BoltClock Sep 8 '11 at 12:59
feedback

5 Answers

up vote 6 down vote accepted
private readonly static int MaxTextLength = "Text i want to use".Length;
link|improve this answer
feedback

Use static readonly instead of const.

Constants have to be compile time constants

link|improve this answer
feedback

Unfortunately, if you are using the const keyword the value on the right side of the '=' must be a compile-time constant. Using a "string".length requires .NET code to execute which can only occur when the application is running, not during compile time.

You can consider making the field readonly rather than a const.

link|improve this answer
feedback

Not sure why you want to do this but how about...

private const string MaxText = "Text i want to use.";

private static int MaxTextLength { get { return MaxText.Length; } }
link|improve this answer
feedback

Does the value need to be a const? Would a static readonly work for your case?

private static readonly int MaxTextLength = "Text i want to use".Length;

This will allow you to write the code in a similar manner to your first example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.