18
votes
11answers
2k views
Why should I avoid using Properties in C#?
In his excellent book, CLR Via C#, Jeffrey Richter said that he doesn't like properties, and recommends not to use them. He gave some reason, but I don't really understand. Can anyone explain to me …
16
votes
13answers
896 views
Properties vs Methods
Quick question: When do you decide to use properties (in C#) and when do you decide to use methods?
We are busy having this debate and have found some areas where it is debatable whether we should …
15
votes
4answers
9k views
Objective-C properties: atomic vs nonatomic
What do atomic and nonatomic mean in property declarations?
@property(nonatomic, retain) UITextField *userName;
@property(atomic, retain) UITextField *userName;
@property(retain) UITextField …
14
votes
19answers
861 views
More private than private? (C#)
Sometimes you have a private field that backs a property, you only ever want to set the field via the property setter so that additional processing can be done whenever the field changes. The problem …
11
votes
10answers
536 views
What is the preferred way of constructing objects in C#? Constructor parameters or properties?
I was wondering, what is the preferred way to construct a new object in C#?
Take a Person class:
public class Person
{
private string name;
private int age;
//Omitted..
}
Should I …
10
votes
5answers
502 views
Why are public fields faster than properties?
I was poking around in XNA and saw that the Vector3 class in it was using public fields instead of properties. I tried a quick benchmark and found that, for a struct the difference is quite dramatic …
10
votes
9answers
979 views
C#3.0 Automatic properties, why not access the field directly?
With the new approach of having the get/set within the attribut of the class like that :
public string FirstName {
get; set;
}
Why simply not simply put the attribute FirstName public …
9
votes
8answers
308 views
Do Javascript properties calculate on each call?
Since length is a Javascript property, does it matter whether I use
for( var i = 0; i < myArray.length; i++ )
OR
var myArrayLength = myArray.length;
for( var i = 0; i < myArrayLength ; i++ )
…
9
votes
15answers
1k views
Auto-implemented getters and setters vs. public members
I see a lot of example code for C# classes that does this:
public class Point {
public int x { get; set; }
public int y { get; set; }
}
Or, in older code, the same with an explicit private …
9
votes
6answers
1k views
Why is it impossible to override a getter-only property and add a setter?
Why do you think (or, why is it good that) Microsoft chose not to allow:
public abstract class BaseClass
{
public abstract int Bar { get;}
}
public class ConcreteClass : …
8
votes
7answers
660 views
C# Shorthand Property Question
So here is a bit of syntax that I have never seen before, can someone tell me what this means? Not sure if this is supposed to be some shorthand for an abstract property declaration or something or …
8
votes
3answers
573 views
Why are C# collection-properties not flagged as obsolete when calling properties on them?
I tried to flag a collection property on a class as Obsolete to find all the occurances and keep a shrinking list of things to fix in my warning-list, due to the fact that we need to replace this …
8
votes
3answers
522 views
What is the best way to implement a property that is readonly to the public, but writable to inheritors?
If I have a property that I want to let inheritors write to, but keep readonly externally, what is the preferred way to implement this? I usually go with something like this:
private object m_myProp;
…
8
votes
8answers
4k views
C# eval equivalent?
I can do an eval("something()"); to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#?
What I am exactly trying to do is that I have an integer variable …
7
votes
8answers
444 views
How to avoid repeating similar code in C#
I have some auto-instantiation code which I would like to apply to about 15 properties in a fairly big class. The code is similar to the following but the type is different for each instance:
…
