FileFormat.Extension

FileFormat.Extension property

Gets the extension name of this type.

public string Extension { get; }

Examples

var format = FileFormat.MayaBinary;
Console.WriteLine($"Extension of {format} is {format.Extension}");

See Also