Property Count
Count
Gets the number of skills currently registered.
public int Count { get; }
Property Value
Examples
Checking how many skills are loaded:
var registry = new SkillRegistry();
registry.LoadFromDirectory("./skills");
Console.WriteLine($"Loaded {registry.Count} skills");