0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LINQ > from / where / select

Last updated at Posted at 2015-07-17

https://www.youtube.com/watch?v=1UqjUgcdq6g&index=4&list=PL90AF0EFFEF782D27
の2:00あたりのコードを参考にした。

using System;
using System.Linq;

public void Main()
{
    int[] numbers = new [] { 3, 1, 4, 1, 5, 9, 2 };
    var result = 
        from n in numbers
        where n < 4
        select n;
    foreach(int i in result)
        Console.WriteLine(i);
}

output
3
1
1
2
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?