2
votes
4answers
75 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 wh …
0
votes
2answers
33 views
Skipping fields on model classes
Hello stackoverflow,
Recently, after reading a lot of tutorials around the Internet, I've noticed that some developers skips writing the fields in their model classes and just go …
1
vote
2answers
59 views
Auto Property that returns an interface
This is something curious that I saw in my coding today.
Here is the sample code:
public class SomeClass
{
public IUtils UtilitiesProperty { get; set; }
}
public interface IU …
0
votes
1answer
40 views
Passing auto properties as ref
The C# compiler doesn't allow this. What's the reason for this? And what workaround I can use?
Basically I need to swap some values around, but don't wanna have the same swapping …
10
votes
3answers
2k 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 …
1
vote
4answers
87 views
Is the implementation of Auto Properties in the spec?
Can I rely on the fact that the underlying field to a property named Foo is called "k__BackingField" ?
1
vote
4answers
338 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 dire …
2
votes
4answers
143 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:
cla …
5
votes
8answers
557 views
Do you think “auto interface implementation” would be useful in .NET / C#
Consider this:
public class interface Person : IPerson
{
int ID { get; protected set; }
string FirstName { get; set; }
string LastName { get; set; }
string FullName { get …
2
votes
3answers
300 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 complete …
0
votes
4answers
168 views
Can I create an automatic property (no private member) with get and set code?
In c#, I can do this:
public int Foo { get; set; }
Which is nice. But as soon as I want to do anything in the getter or setter, I have to change it to this:
private int foo;
pu …
1
vote
1answer
138 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;
}
[Co …
4
votes
3answers
428 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 M …
3
votes
3answers
247 views
Does 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 no …
30
votes
21answers
3k 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; }
}
…
