Skip to content

Instantly share code, notes, and snippets.

@wheeliechamp
Last active May 19, 2016 23:26
Show Gist options
  • Save wheeliechamp/f75f761e628823cbb5363b4151635d99 to your computer and use it in GitHub Desktop.
Save wheeliechamp/f75f761e628823cbb5363b4151635d99 to your computer and use it in GitHub Desktop.
using System;
using System.Linq;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("sdf");
string[] txt = {"あ山あ","いい山","川うう"};
var linqWhere = txt.Where(item => item.Contains("山"));
foreach(var item in linqWhere)
{
Console.WriteLine(item);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment