文件名称:linq to object
文件大小:72KB
文件格式:PPT
更新时间:2016-03-24 15:28:35
LINQ OBJECT
LINQ to OBJECT string[] strOne = new string[] { "123", "123", "abc", "qaz", "wsx", "yhn" }; string[] strTwo = new string[] { "123", "345", "abc", "ujm" }; var v_Inner = from tempOne in strOne join tempTwo in strTwo on tempOne equals tempTwo select tempOne;