SymbolExplorer.Code.KnownSectionName.Find C# (CSharp) Метод

Find() публичный статический Метод

public static Find ( string sectionName ) : KnownSectionName
sectionName string
Результат KnownSectionName
        public static KnownSectionName Find(string sectionName)
        {
            var q = from section in KnownSectionNames
                    where section.SectionName == sectionName
                    select section;

            return q.SingleOrDefault();
        }
KnownSectionName