vote up 3 vote down star

What is the point of using set and get in C#?

It seems variables are used differently in this language than in C++.

For some reason, you have to have a static variable defined like this:

public static uint Somenum
{
   set { m_somenum = value; }
   get { return m_somenum; }
}

and prior to this declaration, you need to have this:

public uint m_sumenum;

This seems to be the only way to expose a member of a class to other classes in C#.

The problem is that I seem to be doing this improperly because I get a compile error:

An object reference is required for the non-static field, method, or property '.......m_somenum"


Duplicate: http://stackoverflow.com/questions/295104/what-is-the-difference-between-a-field-and-a-property-in-c

flag
This feels like a dupe of this: stackoverflow.com/questions/295104/… – ctacke Jan 13 '09 at 20:48
@ctacke: I agree – Marc Gravell Jan 13 '09 at 21:04
@both above posters: So do I. – George Stocker Jan 13 '09 at 21:23
I disagree. Although stated at the start is expanded by his statement about the error. So the question becomes, "What is the point of setters and getters in C# and why, when I try to implement them, do I get the following error?" Not an exact duplicate of the referenced question. – Dalin Seivewright Jan 13 '09 at 21:31
@Dalin: you don't reference the private member field, you need to reference the public property, and you need to instantiate an object of that type to reference it. – George Stocker Jan 13 '09 at 23:11
show 2 more comments

closed as exact duplicate by George Stocker Jan 13 '09 at 21:13

9 Answers

vote up 7 vote down check

The problem with your specific definition is that m_somenum isn't static (just as the compiler is telling you).

And with C# 3.0 you can just use this:

public uint Somenum { get; set; }

The "purpose" for all of this is that Somenum is a property. It provides a set/get pair for a single property name. The benefit of this over just exposing a variable is that you can validate inputs for the set and call other methods in the get.

It's probably worthwhile for you to read this question.

link|flag
It also gives you the opportunity to create read-only and write-only properties. – JohnFx Jan 13 '09 at 20:48
Indeed. Good point. – ctacke Jan 13 '09 at 20:49
vote up 2 vote down

One of the benefits of using properties is that you are exposing methods, not variables. So, if you later need to change the Gettter/Setter you can do so w/o breaking other code. Also, you can do something like this:

public int SomeProperty {get; protected set; }

which would make the getter publicly available but only this class and classes derived from it can set the property. So, from an OO view, this would be the prefered way to expose the variables.

link|flag
vote up 2 vote down

Welcome to C#, I hope you will like the language!

It's unrelated to your question but I would like to point it out that unless you know exactly what you are doing and why, using unsigned integers in C# is usually avoided.

The support for unsigned integers in the API is somewhat limited so I suggest just using signed integers (unless of course if you know that you will need to handle larger numbers than 2 billion)

link|flag
vote up 1 vote down

static Properties cannot reference non-static variables, so you needed

private static uint m_sumenum;

on the other hand, properties are different from fields, To duplicate what you probably did in C before you could just do

public static uint Somenum;

The property wrapping adds convenience, flexibility, and maintainability, especially on public classes that are exposed to external components.

P.S. in C# 3.0 simple accessors can be shortened to

public static uint Somenum { get; set }

and the private field is implicitly created by the compiler

link|flag
vote up 0 vote down

I believe you can also just say

public uint Somenum {get;set;}

and get the same thing, but I might be wrong. My C#-fu isn't as strong as I'd like it to be.

link|flag
vote up 0 vote down

You have a static conflict since static Somenum is referencing non-static m_sumenum. Add "static" keyword to m_sumenum or remove it from Somenum.

getters and setters are sort of pointless in your particular code since m_sumenum is public. However, they can be useful if, in the future, you want to prevent the user from directly accessing the variable.

link|flag
vote up 0 vote down

properties syntactically look like variables but 1) can have different read and write accesses and 2) can be members of interfaces. As far as I can tell those are the main reason for having them.

link|flag
vote up 0 vote down

In addition to what others have said...

The declaration of your member variable (or "field") m_sumenum does not necessarily have to preceed the property declaration. Class members can be declared in any order. The order only makes a difference if there are circular dependancies in fields' initial value expressions.

link|flag
vote up -1 vote down

The reason to use properties is when they have side-effects. If it's simple assignment, it's more sensible to just expose the variable.

As for why you get the error, for a static method, you must also have a static variable. Somenum can't see an instance variable because it's not attached to an instance.

link|flag
Using a property from the beginning protects users of your code from binary compatibility problems if you decide to change from a field and if there is reflection involved a property is accessed differently to a field. – Andrew Kennan Jan 13 '09 at 21:15
Also, a field cannot be a member of an interface. – Andrew Kennan Jan 13 '09 at 21:15

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