/// <summary> /// Checks if the given aConcept skos:closeMatch the given bConcept within the given scheme /// </summary> public static bool CheckHasCloseMatchConcept(this RDFSKOSConceptScheme conceptScheme, RDFSKOSConcept aConcept, RDFSKOSConcept bConcept) { return(aConcept != null && bConcept != null && conceptScheme != null ? conceptScheme.GetCloseMatchConceptsOf(aConcept).Concepts.ContainsKey(bConcept.PatternMemberID) : false); }