Answers for "c# == enum and int"

C#
1

enum in c#

enum Itemtype 
{
	Use,
    Loot,
    Equip,
    ETC
};
Posted by: Guest on October-14-2020
-1

enum in c#

public enum TipoAlimento{ cibosecco,umido,snack,mangimi};

        public TipoAlimento tipoalimento { get; }
Posted by: Guest on February-23-2021

C# Answers by Framework

Browse Popular Code Answers by Language