Table of Contents

Property Extension

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

Extension

Gets the file extension including the leading dot (e.g., .py, .md).

public string Extension { get; }

Property Value

string

Examples

Getting the file extension:

var resource = skill.GetResource("scripts/validate.py");
Console.WriteLine(resource.Extension); // ".py"