Table of Contents

Class SupportedProgrammingLanguage

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

Represents a programming language supported by the system.

public record SupportedProgrammingLanguage : IEquatable<SupportedProgrammingLanguage>
Inheritance
SupportedProgrammingLanguage
Implements

Constructors

SupportedProgrammingLanguage(string, string)

Represents a programming language supported by the system.

public SupportedProgrammingLanguage(string Name, string Extension)

Parameters

Name string

The name of the programming language.

Extension string

The associated project file extension.

Properties

Extension

The associated project file extension.

public string Extension { get; init; }

Property Value

string

Name

The name of the programming language.

public string Name { get; init; }

Property Value

string