Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# read-only calculated properties, should they be methods?

Tags:

c#

standards

I have several entities that have calculated fields on them such as TotalCost. Right now I have them all as properties but I'm wondering if they should actually be methods. Is there a C# standard for this?

public class WorkOrder {     public int LaborHours { get; set; }     public decimal LaborRate { get; set; }      // Should this be LaborCost()?     public decimal LaborCost     {         get         {             return LaborHours * LaborRate;         }     } } 
like image 972
Jim Mitchener Avatar asked Jan 08 '10 20:01

Jim Mitchener


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


2 Answers

It's OK to use calculated properties rather than methods, as long as the calculation doesn't take a noticeable time

See Property usage guidelines

like image 160
Thomas Levesque Avatar answered Sep 24 '22 00:09

Thomas Levesque


I think methods should perform actions on the object, typically change the state of the object. Properties should reflect the current state of the object even if the property is calculated. So you should keep your properties IMO.

like image 29
Cellfish Avatar answered Sep 21 '22 00:09

Cellfish