Use Enum.GetValues<T>()
This commit is contained in:
parent
bbd5d11d3b
commit
dbea7cac67
|
@ -9,9 +9,9 @@ namespace Jellyfin.Extensions.Json.Converters;
|
|||
/// </summary>
|
||||
/// <typeparam name="T">The type of enum.</typeparam>
|
||||
public class JsonFlagEnumConverter<T> : JsonConverter<T>
|
||||
where T : Enum
|
||||
where T : struct, Enum
|
||||
{
|
||||
private static readonly T[] _enumValues = (T[])Enum.GetValues(typeof(T));
|
||||
private static readonly T[] _enumValues = Enum.GetValues<T>();
|
||||
|
||||
/// <inheritdoc />
|
||||
public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||
|
|
Loading…
Reference in New Issue
Block a user