Tagged Questions
165
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?
40
votes
4answers
2k views
Why isn't String.Empty a constant?
In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
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 ...
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 ...
8
votes
4answers
222 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 ...
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 ...
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
267 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
3answers
283 views
Declaring constants in a project
I have seen these two approaches for constant declaration which are to be used in the project.
Constants in a public module.
Constants in a NonInheritable(Sealed) class
Does anybody uses any ...
4
votes
1answer
213 views
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
1answer
357 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
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
727 views
Is it possible to declare a dynamic constant in VB .NET?
I'm trying to save a timestamp into a constant at the beginning of a program's execution to be used throughout the program. For example:
Const TIME_STAMP = Format(Now(), "hhmm")
However, this code ...
2
votes
5answers
2k views
c#:How to use enum for storing string constants? [closed]
Possible Duplicate:
Enum with strings
is is possible to have string constants in enum like
enum{name1="hmmm" name2="bdidwe"}
if it is not so what is best way to do so?
I tried it ...
2
votes
12answers
403 views
Does .Net have any built in constants for common numbers like million, billion etc?
Does .Net have any built in constants for common numbers like million, billion etc?
EDIT: As has been suggested this was for readability reasons, rather than writing 1000000 or 1000000000. I know I ...
2
votes
4answers
1k views
Storing string values as constants in the same manner as Enum
I know there is a way to make enum work for string types with conversions galore - the code doesn't look pretty.
Does anyone know of any way to have something like this:
public SOMESTRUCTURE ...
2
votes
7answers
840 views
.NET enumerations of symbolic constants for string values
I have a list of rather meaningless codes that I'm processing with a VB.NET Windows application. For the business logic I'm writing to process those codes, I'd like to use meaningful constants (like ...
2
votes
4answers
240 views
Constants in a C# Web Application
Does it make sense to create a constant for the value of a penny? For example, if I needed to decrement an amount by a penny. Do you think it is more readable if the code said:
amount -= ...
2
votes
8answers
882 views
Best way to use a property to reference a Key-Value pair in a dictionary
This is a fairly trivial matter, but I'm curious to hear people's opinions on it.
If I have a Dictionary which I'm access through properties, which of these formats would you prefer for the property?
...
1
vote
1answer
117 views
In C#, why is string.Empty a field instead of a constant? [closed]
Possible Duplicate:
Why isn't String.Empty a constant?
I can use "" but not string.Empty when specifying default values for method arguments in C# 4.0. This would make sense if ...
1
vote
5answers
448 views
Why aren't constants all in upper-case in .Net?
Microsoft naming conventions for .Net put constants in Pascal Case. In fact, it explicitly tells us to avoid using all caps for constants:
You might also have to capitalize
identifiers to ...
1
vote
1answer
62 views
Is there a constant describing the minimal Windows FileTime Value in .Net?
I am using the DateTime.ToFileTime and FromFileTime methods to store and retrieve timestamps in a database. The mininum windows file time is midnight, Jan 1, 1601. Is there a constant similar to ...
1
vote
7answers
430 views
.NET constant for number of seconds in a day?
Does .NET have a constant for the number of seconds in a day (86400)?
0
votes
2answers
363 views
Reflecting constant properties/fields in .net [closed]
Possible Duplicate:
Type.GetFields() - only returning “public const” fields
I have a class which looks like as follows:
public class MyConstants
{
public const int ONE = 1;
...
0
votes
4answers
862 views
How can I define a variable as CONSTANT when retrieved from Web.Config?
I keep a lot of settings in AppSettings, and I was wondering if it's considered good practice to name them in UpperCase. Essentially, they're the same as Constants right? As I understand it, if you ...
0
votes
1answer
622 views
Sharing constants across a WCF service
I have certain strings which contain special characters so they can not be shared as enum members across a WCF service. (Actually, they are keys for configuration values.)
I want to be able to pass ...