Table of Contents

Class SupportedProgrammingLanguages

Namespace
Stride.Core.Assets
Assembly
Stride.Core.Assets.dll

Provides a list of programming languages supported by the system.

public static class SupportedProgrammingLanguages
Inheritance
SupportedProgrammingLanguages

Properties

Languages

Gets the list of supported programming languages.

public static IReadOnlyList<SupportedProgrammingLanguage> Languages { get; }

Property Value

IReadOnlyList<SupportedProgrammingLanguage>

A list of SupportedProgrammingLanguage objects.

Remarks

Use this list to check for supported programming languages when needed. The list is initialized with common programming languages and their respective project file extensions.

Methods

IsProjectExtensionSupported(string)

Determines if a given project file extension is supported.

public static bool IsProjectExtensionSupported(string extension)

Parameters

extension string

The project file extension to check.

Returns

bool

True if the extension is supported, otherwise false.