advance C# tricks and hits

78

advance C# tricks and hits -

      decimal total = (from account in myAccounts
                       where account.Status == "active"
                       select account.Balance).Sum();

Comments

Submit
0 Comments