What's the difference between the first and second definitions?
//1
private static string Mask
{
get { return "some text"; }
}
//2
private const string Mask = "some text";
Which benefits has the first and the second approach?
|
What's the difference between the first and second definitions?
Which benefits has the first and the second approach? |
|||
| show 2 more comments |
|
As long as they are private they will probably be optimized to more or less the same code. The re is another story if they are public and used from other assemblies.
|
|||
|
|
|
Basically In few words EDIT: Very good Community Wiki post regarding constants: Referencing constants across assemblies |
||||
|
|
|
const is a keyword of the language. 1s defined, your not allowed to change it down the line. Yes the property also depicts the same story, but it can have much more structure in it. |
|||
|
|
getaccessor only can be considered as readonly. – Danny Chen Aug 11 '11 at 9:35readonlymeans that the object can not be replaced once initializers and constuctors are done. Agetproperty can return different objects every time called. – Albin Sunnanbo Aug 11 '11 at 9:37