Tagged Questions

1
vote
3answers
126 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 u …
0
votes
2answers
43 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;} …
4
votes
6answers
124 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 MyPrope …
3
votes
9answers
240 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 …
1
vote
4answers
229 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 …
0
votes
5answers
158 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 t …
2
votes
6answers
172 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 …
4
votes
3answers
299 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!
2
votes
2answers
706 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 typic …
11
votes
8answers
3k 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?
3
votes
1answer
230 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 …
8
votes
1answer
490 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) …
3
votes
5answers
642 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 loo …