您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

23 行
751 B

/*using System.Collections.Generic;
using Unity.UIWidgets.foundation;
namespace Unity.UIWidgets.DevTools
{
public class EnumUtils<T> {
public EnumUtils(List<T> enumValues) {
foreach (var val in enumValues) {
var enumDescription = DiagnosticUtils.describeEnum(val);
_lookupTable[enumDescription] = val;
_reverseLookupTable[val] = enumDescription;
}
}
Dictionary<string, T> _lookupTable = new Dictionary<string, T>();
Dictionary<T, string> _reverseLookupTable = new Dictionary<T, string>();
T enumEntry(string enumName) => _lookupTable[enumName];
string name(T enumEntry) => _reverseLookupTable[enumEntry];
}
}*/