SymbolExplorer.Code.KnownSectionName.Find C# (CSharp) Method

Find() public static method

public static Find ( string sectionName ) : KnownSectionName
sectionName string
return KnownSectionName
        public static KnownSectionName Find(string sectionName)
        {
            var q = from section in KnownSectionNames
                    where section.SectionName == sectionName
                    select section;

            return q.SingleOrDefault();
        }
KnownSectionName