Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# BestPractice: Private var and Public Getter/Setter or Public Var

Tags:

c#

What are the advantages and differences between the below two coding styles...

public void HelloWorld () {

        private string _hello;

        public string Hello {    
           get
            {
                return _hello;
            }
           set
            {
                _hello = value;
            }
        }
}

or

public void HelloWorld () {

        public string Hello { get; set; }

}

My preference is for short simple code, but interested to hear opinions as I see many developers who insist on the long route.

like image 480
Gavin Avatar asked Jan 07 '11 20:01

Gavin


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?

Full form of C is “COMPILE”. One thing which was missing in C language was further added to C++ that is 'the concept of CLASSES'.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C language basics?

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.


1 Answers

The first one allows you to customize the accessors. For instance, you might want to validate the value in the setter, or lazily load the value in the getter. It also allows you to make the backing field readonly.

The second form allows no customization (except accessibility of the getter and setter). It's just a shorthand equivalent of the first form.

If you don't need to do anything specific in the getter and setter, the second form is usually more convenient.

like image 131
Thomas Levesque Avatar answered Sep 29 '22 23:09

Thomas Levesque