CSharper presented the following explanation :
>> I know you can now define something like the follwing
>>
[quoted text clipped - 32 lines]
> property setter itself. Trying to avoid one variable...
> Thanks,
That automatic property is not limited to "basic types", you can use
that on any type:
public Person LocalPerson { get; set; }
or
public Person LocalPerson { get; private set; }
you still need a
LocalPerson = new Person();
somewhere.
Hans Kesting
CSharper - 21 Mar 2008 18:28 GMT
On Mar 21, 11:15 am, Hans Kesting <invalid.han...@spamgourmet.com>
wrote:
> CSharper presented the following explanation :
>
[quoted text clipped - 51 lines]
>
> - Show quoted text -
Excellent, thats what I was looking for