Skip to content

Instantly share code, notes, and snippets.

@indare
Created March 9, 2012 04:01
Show Gist options
  • Save indare/2004959 to your computer and use it in GitHub Desktop.
Save indare/2004959 to your computer and use it in GitHub Desktop.
Linqの理解用
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace linqtest
{
public class hoge{
public string id;
public int value;
}
public class Class1
{
public void hoge()
{
List<hoge> Ulist = new List<hoge>();
string fuga = Ulist.Single(n => n.id == "1").id;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment