C# - System.StackOverflowException with Lambda
Posted
by tyndall
on Stack Overflow
See other posts from Stack Overflow
or by tyndall
Published on 2010-05-06T20:43:02Z
Indexed on
2010/05/06
20:48 UTC
Read the original article
Hit count: 463
Under what situations would this code error out with System.StackOverflowException?
Accounts.Sort((x, y) => string.Compare(x.AccountId, y.AccountId));
© Stack Overflow or respective owner