Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

188
votes
11answers
65k views

How do you give a C# Auto-Property a default value?

How do you give a C# Auto-Property a default value? I either use the constructor, or revert to the old syntax. Using the Constructor: class Person { public Person() { Name = ...
72
votes
20answers
10k views

C# 3.0 Auto-Properties - useful or not?

I am used to create my Properties in C# using a private and a public field: private string title; public string Title { get { return title; } set { title = value; } } Now, with .net 3.0, ...
48
votes
3answers
20k views

Initializing C# auto-properties

I'm used to writing classes like this: public class foo { private string mBar = "bar"; public string Bar { get { return mBar; } set { mBar = value; } } //... other methods, no ...
16
votes
4answers
215 views

Encapsulate Collection in C#

Since 3.0 C# has great syntax sugar like auto-properties which a lot simplify implementation of encapsulation principle. This is good if you use it with atomic values, so you can replace encapsulation ...
16
votes
4answers
21k views

C# automatic property deserialization of JSON

I need to deserialize some JavaScript object represented in JSON to an appropriate C# class. Given the nice features of automatic properties, I would prefer having them in these classes as opposed to ...
15
votes
3answers
2k views

Automatic Properties and Structures Don't Mix?

Kicking around some small structures while answering this post, I came across the following unexpectedly: The following structure, using an int field is perfectly legal: struct MyStruct { ...
13
votes
6answers
3k views

How to prevent auto implemented properties from being serialized?

How can I prevent a auto implemented property from being serialized by the binary formatter? The [NonSerialized] attribute can only be used with fields. And the field is hidden when using auto ...
10
votes
7answers
3k views

Are C# auto-implemented static properties thread-safe?

I would like to know if C# automatically implemented properties like "public static T Prop{get;set;}", are thread safe or not. Thanks!
9
votes
5answers
303 views

What's the point of an auto property?

This might sound naive, but... class Widget { public int Foo { get; set; } } That's cool, and saves some boilerplate against using a backing field, but at that point, isn't it equivalent to ...
9
votes
3answers
677 views

Can't set breakpoints on an auto-property setter ? Why?

Apparently VS 2008 does not allow setting a breakpoint just on the setter of an auto-property. I.e. if I define an auto-property like this: public int CurrentFramesize { get; ...
9
votes
5answers
273 views

Is implementing a singleton using an auto-property a good idea?

I recently found out about auto-properties and like them quite a lot. At this moment I am trying to use them everywhere where I can. Not really to just be able to use them everywhere, but more to see ...
8
votes
3answers
157 views

Purpose of automatic properties in .NET

Why is this: public string Foo {get;set;} considered better than this: public string Foo; I can't for the life of me work it out. Can anyone shed some light? Thanks
8
votes
9answers
1k views

C# Auto Property - Is this 'pattern' best practice?

I seem to be using this sort of pattern in my code a lot , I know that it is not a simple Autoproperty any more as that would be: public IList<BCSFilter> BCSFilters { get; set; } The code I ...
7
votes
5answers
197 views

Using a private auto property instead of a simple variable for a programming standard

In a discussion with a peer, it was brought up that we should consider using auto properties for all class level variables... including private ones. So in addition to a public property like so: ...
7
votes
1answer
159 views

Why does ReSharper need to scan all files when converting a property to an auto property?

Is there any difference between accessing a property that has a backing field private int _id; public int Id { get { return _id; } set { _id = value; } } versus an ...
6
votes
3answers
159 views

Auto-properties and structs

I am wondering about the following C#-code: struct Structure { public Structure(int a, int b) { PropertyA = a; PropertyB = b; } public int PropertyA { get; set; } ...
6
votes
4answers
227 views

Is always prefixing (auto)properties with the this-keyword considered a good practice?

Ever since I found out about auto properties, I try to use them everywhere. Before there would always be a private member for every property I had that I would use inside the class. Now this is ...
5
votes
2answers
1k views

c# constructors vs auto-properties and object initializers

I have used auto properties a lot but I have gone more and more away from that setting up classes with readonly backing fields initialized in the constructor. I remove all setters and only add the ...
5
votes
1answer
294 views

Resharper doesn't automatically convert to auto properties in Serializable classes - should I?

I ran across this issue today and was able to determine that, when doing code cleanup, R# will not convert properties from having backing fields to auto properties in classes that are decorated with ...
5
votes
9answers
1k views

Do you think “auto interface implementation” would be useful in .NET / C# [closed]

Consider this: public class interface Person : IPerson { int ID { get; protected set; } string FirstName { get; set; } string LastName { get; set; } string FullName { get { return FirstName + ...
4
votes
6answers
139 views

C# , Difference between property with variable and without variable [closed]

Possible Duplicate: What's the difference between encapsulating a private member as a property and defining a property without a private member? I know the basic functionality of ...
4
votes
5answers
348 views

get; set; syntax in C#

In C#, I can have a property without having the need to declare a private variable. My VB6 code that looked like this 'local variable(s) to hold property value(s) Private mvarPhoneNumber As String ...
4
votes
2answers
698 views

DefaultValue atttribute is not working with my Auto Property!

I have the following Auto Property [DefaultValue(true)] public bool RetrieveAllInfo { get; set; } when I try to use it inside the code i find the default false for is false I assume this is the ...
4
votes
4answers
1k views

Why do automatic properties require both getters AND setters?

In C#, if I declare an auto-implemented property, why do I have to declare BOTH the get and set part? i.e. public string ThisWorks { get; set; } public string ThisDoesnt { get; } Isn't this ...
3
votes
2answers
87 views

quick and easy setters and getters?

It's allowed to do: public int Age { get; set; } but does the application create/allocate the space for the variable? I usually do private int age = 0; public int Age { get { return this.age; } ...
3
votes
2answers
180 views

Inherit from abstract class with properties of another type (.NET 3.5, C#)

I have 3 following classes: public class BaseProperty1{ public string Property1 {get; set;} } public class ChildProperty1 : BaseProperty1 { } public abstract class Base{ public abstract ...
3
votes
7answers
441 views

How to initialize auto-property to not null in C#?

I have a property: public Dictionary<string, string> MyProp { get; set; } When I invoke that property to add an item, I get a NullReferenceException. How would I do the null check in the ...
3
votes
4answers
699 views

Adding a setter to a virtual property in C#

I have a situation like this: public abstract class BaseClass { public abstract string MyProp { get; } } Now, for some of the derived classes, the properties value is a synthesized values, so ...
3
votes
7answers
770 views

Quick create C# properties from variables

For C#, I hate writing out the variables and then writing out all the properties. Isn't there a way to select all variables, right click and create all the properties.
3
votes
1answer
992 views

Svn import with auto-props & pre-commit hook

My company's svn repo has a lot of MS Word docs in it. We've implemented a policy that all .doc files must have the svn:needs-lock property set to prevent parallel access on files that are hard to ...
3
votes
4answers
836 views

Do auto-implemented properties support attributes?

I was told that in c# attributes are not allowed on the auto-implemented properties. Is that true? if so why? EDIT: I got this information from a popular book on LINQ and could not believe it! EDIT: ...
3
votes
2answers
830 views

How to reset svn-properties according to new SVN config?

Recently I made a bunch of changes to my local svn config file. Mainly I corrected svn:mime-type properties of about 15 different file types. Now I need reset all previously checked in files according ...
3
votes
6answers
2k views

C# 3.0 Auto-Properties - Is it possible to add custom behaviour?

I'd like to know if there is any way to add custom behaviour to the auto property get/set methods. An obvious case I can think of is wanting every set property method to call on any PropertyChanged ...
2
votes
1answer
154 views

How do I set a custom Author name in TortoiseSVN locally?

I am using auto props to populate the $Id$ tag with TortoiseSVN but it is using the author name that is the name of the computer, in this case 'Peter'. I want it to use my name instead of the ...
2
votes
5answers
260 views

Why do we need to create class variables to get and set a property?

Very simple question but I find it very important to understand why we do it. I can create a property in the class as follows: 1st Approach: public class MyClass { public string MyProperty ...
2
votes
1answer
299 views

Fluent NHibernate PropertyNotFoundException for Auto Property

I'm trying to get Fluent NHibernate to map a collection for me. My class definitions are as follows: public abstract class Team { public virtual Guid Id { get; set; } public virtual string ...
2
votes
2answers
170 views

In C# can I make auto-property perform some extra work with a help of an attribute?

This question is related but not the same as this: http://stackoverflow.com/questions/40730/how-do-you-give-a-c-auto-property-a-default-value I love auto-properties, but sometimes I have to do ...
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
3answers
169 views

How to set an autoproperty in the constructor of a struct?

Why is this valid public struct MyStruct { public MyStruct(double value) { myField = value; } private double myField; public double MyProperty { get ...
2
votes
4answers
1k views

How often do you see abuse of C# shorthand getters/setters?

In C# you can create getter/setters in a simpler way than other languages: public int FooBar { get; set; } This creates an internal private variable which you can't address directly, with the ...
2
votes
4answers
207 views

How to customize Auto Properties in C# 3.0

Before C# 3.0 we done like this: class SampleClass { private int field; public int Property { get { return this.field } set { this.field = value } } } Now we do this: class SampleClass { ...
2
votes
1answer
491 views

Is there a Reflector add-in or other tool that will handle auto properties?

Reflector shows this for auto properties: public string AddressLine1 { [CompilerGenerated] get { return this.<AddressLine1>k__BackingField; } [CompilerGenerated] ...
2
votes
3answers
432 views

Is there a way to get Visual Studio 2008 to stop formatting my AutoProperties?

In Visual Studio 2008's Options > Text Editor > C# > Formatting, I have the following settings ticked. Automatically format completed statement on ; Automatically format completed block on } This ...
1
vote
3answers
75 views

Anyone tried implement C#.Auto-Property which would store value in Session?

I like using c# Auto-Property in code as I found it much more nicer. Recently got an idea how I would manage to use Auto-Property, but store the value in Session. Simply for few reason: - avoid typos ...
1
vote
2answers
53 views

How to default svn:keywords to enabled?

Is there a way to enable svn:keywords by default so that this property does not need to be turned on for each keyword every time a new source file is added?
1
vote
1answer
141 views

Auto updating properties in sqlalchemy

I've got a sqlalchemy model that is set up like this: class Entry(Base): __tablename__ = 'entries' __table__ = Table('entries', Base.metadata, Column('id', Integer, ...
1
vote
7answers
145 views

Setting property or field when inside of class?

Well I am learning properties and I am not sure about the following: class X { private int y; public X(int number) { this.Y=number; // assign to property OR this.y=number //? } ...
1
vote
8answers
895 views

Validating properties in c#

let's suggest I got an interface and inherit class from it, internal interface IPersonInfo { String FirstName { get; set; } String LastName { get; set; } } internal interface ...
1
vote
5answers
147 views

Problem with struct's constructor (compiler is yelling that I didn't fully initialize all the struct's auto-properties)

I have the following bit of code: public struct Interval { public double Min { get; set; } public double Max { get; set; } public Interval(double min = double.MinValue, double max = ...
1
vote
1answer
71 views

Unexpected C# behaviour with autoproperties and consturctors

It took me some debugging to figure this out (or so do I think). I will let the code loose on you and see what you come up with. There is a simple Contact class with: 1) some auto-properties, 2) a ...

1 2