1
vote
1answer
30 views
Using an Anonymous method to populate a property in an object initializer
Assuming sr is an IEnumerable, I want to use code like this to do an inline calculation using two of the items from sr.Lines(). The problem is that the lambda is of type "lambda expression" and not …
2
votes
5answers
252 views
C# 3.0 - Object initializer
Hello,
I'm having a little problem and I don't see why, it's easy to go around it, but still I want to understand.
I have the following class :
public class AccountStatement : IAccountStatement
{
…
