私は次のList<T>
ようなクラスを持っています
public class info
{
int id { get; set; }
string Depname { get; set; }
}
List<info> query=(from c in student join Dep in Department
on c.studentid equals in.Studentid
select new info
{
id=c.studentid,
Depname=in.Depname
} ).ToList;
私が欲しいのは、Depnameのようなプロパティ名にアクセスしたいということです
string SDepname=query.Depname