Property Extension
Extension
Gets the file extension including the leading dot (e.g., .py, .md).
public string Extension { get; }
Property Value
Examples
Getting the file extension:
var resource = skill.GetResource("scripts/validate.py");
Console.WriteLine(resource.Extension); // ".py"