System.Web.Mvc.ViewDataExtension.SetPotentialStudents C# (CSharp) 메소드

SetPotentialStudents() 공개 정적인 메소드

public static SetPotentialStudents ( this viewDataDictionary, IEnumerable students ) : void
viewDataDictionary this
students IEnumerable
리턴 void
        public static void SetPotentialStudents(this ViewDataDictionary viewDataDictionary, IEnumerable<Person> students)
        {
            viewDataDictionary[potentialStudentsKey] = students;
        }