Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
1answer
2k views

Why is it necessary to call :this() on a struct to use automatic properties in c#?

If I define a struct in C# using automatic properties like this: public struct Address { public Address(string line1, string line2, string city, string state, string zip) { Line1 = ...
17
votes
8answers
11k views

C# Automatic Properties - Why Do I Have To Write “get; set;”?

If both get and set are compulsory in C# automatic properties, why do I have to bother specifying "get; set;" at all?
9
votes
4answers
206 views

What is @synthesize foo = _foo all about?

Why does one want this underscore prefix in an iOS app?
9
votes
5answers
753 views

C# Lazy Loaded Automatic Properties

In C#, Is there a way to turn an automatic property into a lazy loaded automatic property with a specified default value? Essentially, I am trying to turn this... private string _SomeVariable ...
9
votes
2answers
327 views

Explicit implementation of an interface using an automatic property

Is there any way to implement an interface explicitly using an automatic property? For instance, consider this code: namespace AutoProperties { interface IMyInterface { bool ...
7
votes
3answers
193 views

Auto-implemented properties with non null guard clause?

I do agree with Mark Seeman's notion that Automatic Properties are somewhat evil as they break encapsulation. However I do like the concise syntax, readability and convenience they bring. I quote: ...
7
votes
5answers
290 views

How to properly define class properties?

When defining a new class within a project what is the correct/best practice for doing so? In the past I have created classes such as: public class MyClass { public string FirstName {get; ...
7
votes
4answers
787 views

Why do C# automatic properties not support default values like VB 2010?

Looking at the new VB 2010 features, I stumbled upon support for Auto-Implemented Properties. Since I'm working with C#, this seemed quite familiar, but I noticed that VB did add a feature I would ...
7
votes
6answers
389 views

Is there a way to make readonly (not just private) automatic properties?

Automatic properties let me replace this code: private MyType myProperty; public MyType MyProperty { get { return myPropertyField; } } with this code: public MyType MyProperty { get; private ...
7
votes
2answers
4k views

What's the best way to call INotifyPropertyChanged's PropertyChanged event?

When you implement the INotifyPropertyChanged interface, you're responsible for calling the PropertyChanged event each and everytime a property is updated in the class. This typically leads to the ...
5
votes
3answers
189 views

No iVars -> What am I missing?

I never use iVars. I only use properties -- sometimes assign properties with primitive types, and sometimes on a "private" class extension. I've seen the advantages of not using iVars in switching to ...
5
votes
1answer
183 views

MonoTouch - Fields vs Automatic Properties

Is there a noticeable performance difference when using fields instead of auto properties? What about if I'm deserializing an array of say, 1000 JSON objects with 5 properties each? My iPhone ...
5
votes
3answers
2k views

How do I write private set auto-properties in VB 10?

in C#: public string Property { get; private set; } in VB? Please vote or/and share your ideas!
4
votes
4answers
254 views

Automatic variables in c++ [closed]

Possible Duplicate: In C++, why should new be used as little as possible? I want to know where automatic variables are allocated in c++. Stack or heap? Also, i read somewhere ...
4
votes
10answers
892 views

C# Automatic Properties - Still null after +=?

This seems like a bug to me... I accept that automatic properties, defined as such: public decimal? Total { get; set; } Will be null when they are first accessed. They haven't been initialized, ...
4
votes
1answer
377 views

.NET - Error trying to compile Automatic Properties

I'm trying to compile a POCO with this code public class MenuItem { public string Name { get; set; } public string Url { get; set; } } I keep getting compile errors on the gets ...
3
votes
4answers
164 views

Do we need to lock when we get the property in C#

In C#, is it necessary to lock when getting a non volatile property? I know we need to lock when setting the property. how about getting? Now 3.0 provide automatic property, is it thread safe ...
3
votes
4answers
199 views

Is there a technical reason why an automatic property must define both a get and set accessor

I know that automatic properties must define a get and set accessor method, I also know that it is possible for either of these accessors to be made invisible by means of an access modifier. Is there ...
3
votes
3answers
390 views

C# automatic property

Does the automatic property of C# 3.0 completely replace the filed? I mean,I can directly use the property instead of filed as property serves as private backing field.(sorry,I understand like that ...
3
votes
4answers
1k views

C# 3.0 :Automatic Properties - what would be the name of private variable created by compiler

I was checking the new features of .NET 3.5 and found that in C# 3.0, we can use public class Person { public string FirstName { get; set; } public string LastName { get; set; } } instead ...
3
votes
5answers
1k views

A C# to VB.Net conversion utility that handles Automatic properties correctly?

I hope this isn't considered a duplicate since it's more pointed than similar questions (I'm curious about a specific weakness in C# to VB.net conversion utilities). I've been looking at using a tool ...
2
votes
8answers
91 views

how to override set in C# of automatic properties

I want to use auto-implemented properties, but at the same time I want to call a method every time the property is changed. public float inverseMass { get; set { onMassChanged(); ...
2
votes
4answers
97 views

Aren't automatic properties in C# causing ovehead?

When I have automatic propertie and I try to access it from within it's class, it seems like an overhead, because I use a function to access a member of my class instead of just accessing it ...
2
votes
3answers
205 views

Auto-implemented get/set properties

Is there any downside to letting C# create the private backing fields that are generated by using the automatic property creation (ie {get; set})? I am aware that it is automatic and therefore you ...
2
votes
3answers
172 views

The case against automatic properties [closed]

Possible Duplicate: C# 3.0 Auto-Properties - useful or not? My boss and I regularly argue about the benefits and disadvantages of using automatic properties. public string Name { get; set; ...
2
votes
1answer
69 views

Auto-properties: Checking/validating during the “set”

I think we can all agree that Automatic Properties in C# 3.0 are great. Something like this: private string name; public string Name { get { return name; } set { name = value; } } Gets ...
2
votes
3answers
567 views

Automatic transformation from getter/setter to properties

I have a big libray written in C++ and someone created an interface to use it in python (2.6) in an automatic way. Now I have a lot of classes with getter and setter methods. Really: I hate them. I ...
2
votes
6answers
227 views

Is this the correct syntax for auto properties?

I've been programming for so long its hard to keep up with language changes sometimes... Is it really ok to set properties like this after .net v2 public string LocaleName { get; ...
1
vote
2answers
166 views

Must declare a body because it is not marked abstract or extern (CS0501)

Im newbie in C# and don't know its syntax. But I know a bit about other languages (Java, C++). I downloaded GLWidget project and tryed to build it. However I got an error CS0501 at these lines (with { ...
1
vote
1answer
186 views

Is it possible to set properties automatically in VB.NET?

I'm actually more comfortable in Java language for developing apps. But since my requirement now is getting tighter, I need to jump forward into VB.NET well yeah... seems need to adapt some a bit. ...
1
vote
5answers
279 views

C# - Difference between Automatic Property and returning a backing field?

Simple question I imagine, but what is the difference between these lines of code: Code 1 public int Temp { get; set; } and Code 2 private int temp; public int Temp { get { return temp; } } ...
1
vote
4answers
208 views

Automatic Properties Problem

At the moment i'm useing .Net 3.0 but I don't get it how to use Automatic Properties . For example if i want write this sample code via Authomatic Properties , What should i do ? private string ...
1
vote
5answers
390 views

How to return a new instance of an object in C# Automatic Properties

Is it possible, using C# Automatic Properties, to create a new instance of an object? in C# I love how I can do this: public string ShortProp {get; set;} is it possible to do this for objects like ...
0
votes
6answers
124 views

Property getter setter in C#

I have a class library project. I have a property there like below. It's not a read only property private Int32 ABC ; public Int32 ABCD { set { ...
0
votes
6answers
163 views

What are Automatic Properties in C# and what is their purpose?

Could someone provide a very simple explanation of Automatic Properties in C#, their purpose, and maybe some examples? Try to keep things in layman's terms, please!
0
votes
2answers
761 views

Is there a snippet for an auto-property in VB.NET?

In Visual Studio 2010, for VB.NET, the "Property" + Tab + Tab inserts a full property implementation. Is there another snippet for inserting an autoproperty?
0
votes
3answers
169 views

Control the XML generated for automatic properties

Can anyone explain how to control the XML generated ? I have a simple test class, NumberService ... [Serializable] public class NumberService { public int Number1 { get; set; } public int ...
0
votes
3answers
37 views

Question about automatic properties

what happens if you implement an automatic property public string Foobar { get; set; } and then code the corresponding variable private string foobar = string.Empty; Will the automatic property ...
0
votes
2answers
169 views

null exception with lists in c#

hey i am trying to work with a generic list in C# and for some reason after allocating memory for the list i am getting unhandeledNullException. //edit i found out what was my problem i did not ...
0
votes
1answer
240 views

Can you fire events with automatic properties?

I was wondering if I can use automatic properties and still be able to fire events on property changed. Here are my current classes. (The actual User class got way more properties/fields of course). ...
0
votes
1answer
57 views

Property that can rearrange components when I am changing size of windows applications

Are there any property of a form or a component by which components of windows applications created using Visual Studio will be arranged automatically when I changed the windows size or maximized - ...
0
votes
6answers
936 views

Why doesn't Java have automatic properties like C#? [closed]

C# has automatic properties which greatly simplify your code: public string Name { get; set; } public string MiddleName { get; set; } public string LastName { get; set; } Whereas Java has you write ...
0
votes
2answers
165 views

C#3.0 Automatic properties with extra logic

How can I rewrite he following code using C#3.0 automatic properties? private int _myValue; public int MyProperty { get { return _myValue;} set { ...