日期:2014-05-20 浏览次数:20879 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Test
{
public int ID { get; set; }
}
class Program
{
static void Main(string[] args)
{
var list = new List<Test>()
{
new Test() { ID = 3 },