zoukankan      html  css  js  c++  java
  • Linq 入门系列 [Group,Distinct,Union,Concat,Intersect,Except篇]

     ////////////////////////////
        
    ///以下是Group,Distinct,Union,Concat,Intersect,Except的例子和解释
        
    /////////////////////////////

        class Program
        
    {
            
    DB

            
    static void Main(string[] args)
            
    {
                List
    <Student> studentList = GetStudents();

                
    //Group(studentList);

                
    //Distinct(studentList);

                
    //Union(studentList);

                
    //Concat(studentList);

                Intersect(studentList);

                
    //Except();
            }


            
    Group,Distinct,Union,Concat,Intersect,Except

            
    private static IEnumerable<Student> RevealChangeType<T>(T obj)
            
    {
                IEnumerable
    <Student> student = obj as IEnumerable<Student>;

                
    return student;
            }

        }


        
    sealed class Student
        
    {
            
    public int age;
            
    public int Age
            
    {
                
    get return age; }
                
    set { age = value; }
            }


            
    private string name;
            
    public string Name
            
    {
                
    get return name; }
                
    set { name = value; }
            }


            
    private string language;
            
    public string Language
            
    {
                
    get return language; }
                
    set { language = value; }
            }

        }
  • 相关阅读:
    回溯算法
    cannot import name 'np' in mxnet
    Linux后台运行任务 nohup &
    为Windows Terminal添加右键菜单
    Outlook设置QQ邮箱
    逻辑回归 logistic regression
    Python添加自定义目录到sys.path
    强化学习 策略梯度
    为Windows terminal preview添加右键菜单
    双系统使用Linux引导
  • 原文地址:https://www.cnblogs.com/RuiLei/p/820473.html
Copyright © 2011-2022 走看看