11 Temmuz 2011 Pazartesi

2 yorum:

  1. http://i.imgur.com/TMSbbE3.png

    private static void Main()
    {

    var query =
    Enumerable
    .Range(1, 10)
    .Select(i => Math.Pow(i, 2));

    Console.WriteLine("Result[{0}] = {1}", query.Count(), string.Join(", ", query));

    Console.Read();
    }

    YanıtlaSil
  2. http://i.imgur.com/TMSbbE3.png

    private static void Main()
    {

    var query =
    Enumerable
    .Range(1, 10)
    .Select(i => Math.Pow(i, 2));

    Console.WriteLine("Result[{0}] = {1}", query.Count(), string.Join(", ", query));

    Console.Read();
    }

    YanıtlaSil