枚举 记录点滴代码。蜕变中....

public enum Enums { 行业资讯,公司资讯 } public string GetJob(string types) { int itypes = Convert.ToInt32(types); Type type = typeof(Enums); FieldInfo[] fields = type.GetFields(); FieldInfo field = fields[itypes]; return field.Name; }

你可能感兴趣的:(String,资讯,Types,enums)