Queria saber donde tengo el fallo, ya que intento asignar un valor de tipo enum en una clase y no me deja, a ver si me podeis echar un cable.
1 saludo
1 saludo
Código (csharp) [Seleccionar]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Persona pepe = new Persona();
pepe.setEstado = 1; //AQUI ES DONDE NO ME DEJA, INTENTO QUE TENGA VALOR IZQUIERDA
Console.WriteLine(pepe.setEstado);
Console.ReadLine();
}
}
class Persona
{
public enum estados { Derecha, Izquierda };
private estados stat;
public Persona()
{
stat = estados.Izquierda;
}
public estados setEstado
{
set
{
stat = value;
}
get
{
return stat;
}
}
}
}