MingStar.SimUniversity.Contract.StudentGroup.FromDegrees C# (CSharp) 메소드

FromDegrees() 공개 정적인 메소드

public static FromDegrees ( ) : MingStar.SimUniversity.Contract.StudentGroup[]
리턴 MingStar.SimUniversity.Contract.StudentGroup[]
        public static StudentGroup[] FromDegrees(params DegreeType[] degrees)
        {
            return (from degree in degrees
                    select new StudentGroup(degree, 1)).ToArray();
        }