Tagged Questions

166
votes
21answers
17k views

What is the difference between const and readonly?

What is the difference between const and readonly and do you use one over the other?
104
votes
5answers
14k views

C#: Static readonly vs const

I've read around about const and static readonly fields. We have some classes which contains only constant values. Used for various things around in our system. So I am wondering if my observation is ...
31
votes
3answers
10k views

Why Can't I Have “public static const string S = ”STUFF"; In My Class

When trying to compile my class I get an error: The constant 'NamespaceName.ClassName.CONST_NAME' cannot be marked static. at the line: public static const string CONST_NAME = "blah"; I ...
24
votes
5answers
3k views

What is the purpose of Decimal.One, Decimal.Zero, Decimal.MinusOne in C#

Simple question - why does the Decimal type define these constants? Why bother? I'm looking for a reason why this is defined by the language, not possible uses or effects on the compiler. Why put ...
19
votes
3answers
2k views

C# using consts in static classes

I was plugging away on an open source project this past weekend when I ran into a bit of code that confused me to look up the usage in the C# specification. The code in questions is as follows: ...
17
votes
7answers
10k views

Creating a constant Dictionary in C#

What is the most efficient way to create a constant (never changes at runtime) mapping of strings to ints? I've tried using a const Dictionary, but that didn't work out. I could implement a ...
14
votes
8answers
746 views

Type-inferring a constant in C#

In C#, the following type-inference works: var s = "abcd"; But why can't the type be inferred when the variable is a constant? The following throws a compile-time exception: const var s = "abcd"; ...
11
votes
8answers
2k views

In C#, what's the best way to store a group of constants that my program uses?

I have various constants that my program uses. Some are strings, some are ints, and some are doubles. What's the best way to store them? I don't think I want an Enum, because the data is not all the ...
10
votes
14answers
615 views

What is the point of a constant in C#

Can anyone tell what is the point of a constant in C#? For example, what is the advantage of doing const int months = 12; as opposed to int months = 12; I get that constants can't be changed, ...
10
votes
3answers
421 views

C#: Is this field assignment safe?

In this snippet: class ClassWithConstants { private const string ConstantA = "Something"; private const string ConstantB = ConstantA + "Else"; ... } Is there a risk of ending up with ...
10
votes
5answers
513 views

Why doesn't C# offer constness akin to C++?

References in C# are quite similar to those on C++, except that they are garbage collected. Why is it then so difficult for the C# compiler to support the following: Members functions marked ...
9
votes
2answers
655 views

C# - are all Enum constants?

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?
8
votes
4answers
223 views

Why can't I use 'this.' in C# to access my class constant?

In C# .NET, why can't I access constants in a class with the 'this' keyword? Example: public class MyTest { public const string HI = "Hello"; public void TestMethod() { string ...
8
votes
8answers
724 views

variable that can't be modified

Does C# allow a variable that can't be modified? It's like a `const`, but instead of having to assign it a value at declaration, the variable does not have any default value, but can only be assigned ...
7
votes
5answers
266 views

Sharing constants across languages

I have a long list of constants that I need access to in several projects which are in different languages(Verilog, C, C++ and C#). Rather than repeating them in each language, is there a good way to ...
7
votes
4answers
1k views

How to have abstract and overriding constants in C#?

My code below won't compile. What am i doing wrong? I'm basically trying to have a public constant that is overridden in the base class. public abstract class MyBaseClass { public abstract const ...
6
votes
2answers
91 views

Can I declare constant integers with a thousands separator in C#?

The Cobra programming language has a useful feature where you can use underscores in numeric literals to improve readability. For example, the following are equivalent, but the second line is easier ...
6
votes
2answers
155 views

How to group Windows API constants

When defining Windows API const values, is it better to have them as const public const int SW_HIDE = 0; public const int SW_SHOWNORMAL = 1; public const int SW_NORMAL = 1; public const int ...
6
votes
6answers
480 views

TDD : Any pattern for constant testing?

Constants are beautiful people - they can hold in a unique place a value that is used everywhere in your code. Changing that value requires only one simple modification. Life is cool. Well, this is ...
6
votes
5answers
3k views

Why does C# not allow const and static on the same line?

Why does C# not allow const and static on the same line? In Java, you must declare a field as 'static' and 'final' to act as a constant. Why does C# not let you declare const's as final? I make ...
6
votes
2answers
1k views

Environment constants

Is there an equivalant to Environment.NewLine in DotNet for a Tab character?
5
votes
5answers
193 views

How can I specify a [DllImport] path at runtime?

In fact, I got a C++ (working) DLL that I want to import into my C# project to call it's functions. It does work when I specify the full path to the DLL, like this : string str = ...
5
votes
4answers
80 views

Store hierarchical Const data

I was often wondering about the right way to do this: For example, in my program I have around 100 constants (or enums) that are used in some calculation. They should preferrably be stored in one ...
5
votes
3answers
243 views

Best practice for storing application const strings in the code

In my application (C#) i have lots of const messages which are get printed to the log, presented to the user, etc. This const messages are not suppose to change so there is no point putting them in ...
5
votes
2answers
180 views

Why can you read an attribute placed on a const using reflection in C#?

I am playing around with reflection and by accident I realized I could place a custom field attribute on a const class variable, then (using reflection) I read the class' fields, find the const with ...
5
votes
4answers
628 views

How to declare a constant Guid in C#?

Is it possible to declare a constant Guid in C#? I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write const Guid?
5
votes
5answers
533 views

Lookup class use enum, struct, public const, something else?

I'm creating a lookup class so a constant value will be used throughout all the projects. The thing is, there are several solutions to create such a thing. I could create a single class with enums, ...
5
votes
7answers
184 views

Is there any benefit to declare a constant in a local scope in C#?

Is there any benefit to declare a local variable as "const" if I know that I won't be chaning its value? Thanks,
5
votes
2answers
454 views

Most performant way to store large amounts of static strings

in my C# application i need to store huge amounts of constant strings in arrays, like one array for first names and one for last name and so on... These strings never change so my question is how to ...
5
votes
3answers
551 views

Using enum as integer constant in C#

My question is pretty simple, but I didn't find a way to implement my code the way I want it to be. So I started wondering if the code I want to implement is not good. And if it is, what's the best ...
5
votes
16answers
2k views

A few C# naming convention questions

1) What's the policy for declaring a variable? Should you always use the keyword private, or is it OK to skip it? string MyVar1; vs. private string MyVar1; The only reason I see is that ...
5
votes
4answers
1k views

Should I store Enum ID/values in the database or a C# enumeration?

Say my database tables have columns like UserType, SalesType, etc. Should I have database tables with UserTypeID, userTypeName or should I just create a C# enumeration?
4
votes
7answers
154 views

What's the best way to implement a global constant in C#?

I have a Common project inside which I've added my public constants for QueryStringNames. I know generally constants should be as internal or private but I'd need public constants here as I'd like to ...
4
votes
6answers
126 views

Is is a good practice to store propery names in a public constant string?

In order to protect ourself from failure because of any renaming of properties (Let's say you regenerate your poco classes because you have changed some column names in the relevant Db table) is it a ...
4
votes
1answer
268 views

Should I store my global constants in resources file (.resx) or in classes?

I have a plenty of them of different form and types. Of course I will not store a bitmap as const, and I know about localization strings, but what should I do with other constants?
4
votes
6answers
279 views

How best to implement publicly accessible constants in C#

There seem to be three choices for implementing publicly accessible constants in C#. I'm curious if there are any good reason to choose one over the other or if it's just a matter of personal ...
3
votes
2answers
111 views

How would you manage your constants for each c# class?

In all applications, there are always some constant values that are used. I don't like hardcoding these values in my application in each code as it reduces maintainability significantly. I have 2 ...
3
votes
4answers
104 views

How can I process C++ definitions in C#?

I have a bunch of *.h files, containing only c-style definitions like #define ALPHA_REACTOR_CODE 99641 #define BETA_REACTOR_CODE 99642 #define GAMMA_REACTOR_CODE 99643 #define DELTA_REACTOR_CODE ...
3
votes
4answers
266 views

Is there a zero [ 0 ] constant somewhere in any Microsoft .NET class?

I'm just curious and I know it's not of much value, but here it goes... I think that I have seen something like that somewhere but I'm not sure. I mean something like this: var zero = Class.Zero; ...
3
votes
6answers
134 views

Where should constants for events go in a C# project

I'm extremely new to C# and I had a question of convention: Where should constants that are associated with an event be stored? Should they be included in the same place that I define my EventArgs? ...
3
votes
4answers
797 views

How might I define a character or string constant in C# for ASCII 127?

How would one create a char or string constant containing the single character ASCII 127? // Normal printing character - no problems const char VPIPE = '|'; //error "The expression being assigned to ...
3
votes
6answers
307 views

How to initialize an array constant specifying desired indexes

What I just want is to initialize a string[] array constant by specifying not only the values, but the indexes they will be attached to. For example, on: private static readonly string[] Pets = new ...
3
votes
5answers
694 views

How would you store tabular constant Data in your C# project?

I am currently writing a plugin to a CAD style software. The plugin does calculations based on data read from the CAD model and a lot of table lookups (think printed tables in a calculation guide). I ...
3
votes
2answers
2k views

Overriding constants in derived classes in C#

In C# can a constant be overridden in a derived class? I have a group of classes that are all the same bar some constant values, so I'd like to create a base class that defines all the methods and ...
3
votes
1answer
358 views

Are there any constants in the .NET framework for the different web method types (GET, PUT, POST, DELETE, HEAD)?

I just noticed while creating a RESTful WCF service that the Method parameter on the WebInvoke attribute is case sensitive (CAPS required). So, [WebInvoke(Method = "Delete")] is not equal to ...
3
votes
4answers
451 views

In C# how do you accomplish the same thing as a #define

Coming from a C background I'm used to defining the size of the buffer in the following way: #define BUFFER_SIZE 1024 uint8_t buffer[BUFFER_SIZE]; How would you do the accomplish the same thing in ...
3
votes
5answers
609 views

Why does C# limit the set of types that can be declared as const?

Compiler error CS0283 indicates that only the basic POD types (as well as strings, enums, and null references) can be declared as const. Does anyone have a theory on the rationale for this limitation? ...
3
votes
2answers
468 views

C# Technique - Getting Constant Values By String

Is there any good way to convert strings like "xlSum", "xlAverage", and "xlCount" into the value they have under Microsoft.Office.Interop.Excel.XlConsolidationFunction? I guess reflection would be ...
2
votes
3answers
107 views

How to declare a constant in C#/.NET?

I have the following code: public class iSito { public const string myVar = "5262"; public iSito() { } } Now, if from any context (in my case, a .ascx.cs) I try to use ...
2
votes
3answers
191 views

Assigning (non)constant value to enum

I'm trying to assign a short to a enum like this:; public enum ValueRepresentation : short { ApplicationEntity = short.Parse("AE"), AgeString = short.Parse("AS") } This however, obviously, ...

1 2