Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9126279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:00:14+00:00 2026-06-17T07:00:14+00:00

Can anybody explain why I can’t use a const Int32 in an C# attribute?

  • 0

Can anybody explain why I can’t use a const Int32 in an C# attribute?

Example:

private const Int32 testValue = 123;  
[Description("Test: " + testValue)]  
public string Test { get; set; }

Makes the compiler say:

“An attribute argument must be a constant expression, …”

Why?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:00:16+00:00Added an answer on June 17, 2026 at 7:00 am

    As the error states, an attribute argument must be a constant expression.

    Concatenating a string and an integer is not a constant expression.

    Thus, if you pass "Test: " + 123 directly, it will give the same error.
    On the other hand, if you change testValue to a string, it will compile.


    Explanation

    The rules for constant expressions state that a constant expression can contain arithmetic operators, provided that both operands are themselves constant expressions.

    Therefore, "A" + "B" is still constant.

    However, "A" + 1 uses the string operator +(string x, object y);, in which the integer operand is boxed to an object.
    The constant-expression rules explicitly state that

    Other conversions including boxing, unboxing and implicit reference conversions of non-null values are not permitted in constant expressions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody explain me why below code is working on private member variable? public
Can anybody explain why we use ? in Collection generics. As for example :
Can anybody explain what does JdClient is in this code: public JdClient client =
Can anybody explain me this Java code in C#, since I use Mono for
Can anybody explain the importance of NSNotificationCenter? Where to use them? What is the
can anybody explain me with simple example to handle Monitor.PulseAll().I have already gone some
Can anybody explain with examples about why should we use Thread-pools. I have know
Can anybody explain why the if statement below evaluates false? public void addShapeToWhiteboard(PolyLine shape)
Can anybody explain how this function works? public int TestAdd(int a,int b) { if(a
Can anybody explain an example in Paul Graham's ANSI Common Lisp page 110? The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.