Property Score
Score
Gets the match score between 0.0 (no match) and 1.0 (perfect match).
Higher scores indicate stronger relevance to the user's request.
public float Score { get; }
Property Value
Examples
Checking match scores:
var matches = registry.FindMatches("review my code");
foreach (var match in matches)
{
Console.WriteLine($"{match.Skill.Name}: {match.Score:P0}");
// Output: "code-review: 85%"
}