Код: Выделить всё
public class User
{
public int ID { get; set; }
public string Name { get; set; }
public Type Type { get; set; }
public List WeaponsInList { get; set; }
}
public enum Type
{
[Description("Zombie")]
Zombie,
[Description("Human")]
Human
}

Я хочу сохранить данные как Человек и Зомби, а не как int.>
Подробнее здесь: https://stackoverflow.com/questions/325 ... -as-string
Мобильная версия