Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Imagine I created this class:

 public class ColoredPolygon
 {
     public Point[] Vertices { get; set; }
     public Brush Brush { get; set; }
 }

Inside Visual Studio isn't difficult to see which "Brush" is the class and which is the property. But something tells me that is not a best practice to name a property after its class. How would you name this property?

Update One more question about naming: How do you name Arrays? With the plural or with singular?

share|improve this question
2  
Arrays -> Plural; Guitars[] signifies a collection of guitars; more intuitive – Andreas Grech Jun 7 '09 at 22:33
@Dreas thanks for the answer – Jader Dias Jun 7 '09 at 22:37
@Dreas Your syntax is unclear, you mean "Guitar[] guitars". – Trillian Jun 8 '09 at 2:07
@Trillian: yes, u're right; it should be Guitar[] guitars; Sorry for the typo in the first comment – Andreas Grech Jun 8 '09 at 5:08
I think it might be difficult to read when you start using static members of the class Brush inside a method of your class ColoredPolygon. Before I never worried about it. But since the auto properties, there is no lower case variable brush that you use inside ColoredPolygon. Now when I define Brush Brush then intellisense will list 2 options for the function equals (one static one not). When you choose the static one "Brush" will become colored, so that should indicate it. But it's less than ideal. – Matthijs Wessels Jan 14 '10 at 11:59

5 Answers

up vote 20 down vote accepted

I would call it Brush. The Design Guidelines for Developing Class Libraries actually says:

Consider giving a property the same name as its type

(in the section about naming Type members). The text following the statement suggests to do this for properties that are of Enum types, but you can find plenty of examples of this approach for other types of objects in the .NET framework, for instance the Brush and Color properties of the Pen class.

Nothing to worry about, if Brush is a descriptive name for your property you should use that name, especially since it would even follow the naming pattern that you can see within the framework.

share|improve this answer

FillBrush is a good, descriptive name (and I've upvoted) but, honestly, don't worry about it until it actually becomes a real problem. In your case, it may not be the best name, but if it were the best name, I'd keep it until the context dictated otherwise. I have a few examples where the name of the class and the property is the same, but since the property usually is qualified by a variable name (or this.), I don't worry too much about it.

I find the following pretty readable:

var poly = new ColoredPolygon();
poly.Brush = Brushes.Green;
share|improve this answer

How about FillBrush?

share|improve this answer
Good Inspiration. I changed to Filling. – Jader Dias Jun 7 '09 at 22:08
.. or just Fill :) – cwap Jun 7 '09 at 22:09
2  
"Filling" sounds like it belongs inside a donut. FillBrush is a better name than Filling. – Kyralessa Jun 7 '09 at 22:10
Thanks @Meeh and @Kyralessa – Jader Dias Jun 7 '09 at 22:11

As well as FillBrush, mentioned in another answer, you might consider adding a way to set just the fill Color, so that the user won't have to construct a brush just to set a solid color fill.

share|improve this answer

Regarding Fredrik's suggestion (Brush Brush) and also MS's naming suggestions, you may consider giving a property the same name as its type, but you cannot always do it. If for example you have a public enum called Something defined in a class, then that class cannot also have a property called Something.

You can have a property called Brush, presumably because Brush is defined in a different namespace/class and the compiler is then smart enough to figure out which Brush you mean.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.