Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kodeflowstudios.com/llms.txt

Use this file to discover all available pages before exploring further.

Immutable bundle of a language’s ISO code, native name, and English name. Declaration
public readonly struct LanguageInfo
{
	public readonly string Code;
	public readonly string NativeName;
	public readonly string EnglishName;

	public LanguageInfo(string code, string native, string english)
	{
		Code = code;
		NativeName = native;
		EnglishName = english;
	}
}

Description

Small immutable bundle of the three things we want to know about any language: its ISO code (for file paths), its native name (for UI), and its English name (for editor tooling and folder names).

Used By