Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

325
Vistas
How to remove an enum item from an array

In C#, how can I remove items from an enum array?

Here is the enum:

public enum example
{
    Example1,
    Example2,
    Example3,
    Example4
}

Here is my code to get the enum:

var data = Enum.GetValues(typeof(example));

How can I remove Example2 from the data variable? I have tried to use LINQ, however I am not sure that this can be done.

over 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

You cannot remove it from the array itself, but you can create a new array that does not have the Example2 item:

var data = Enum
    .GetValues(typeof(example))
    .Cast<example>()
    .Where(item => item != example.Example2)
    .ToArray();
over 4 years ago · Santiago Trujillo Denunciar

0

I have tried to use LINQ, however I am not sure that this can be done.

If you just want to exclude Example2

var data = Enum
    .GetValues(typeof(example))
    .Cast<example>()
    .Where(item => item != example.Example2);

If you want to exclude two or more enums

var data = Enum.GetValues(typeof(example))
    .Cast<example>()
    .Except(new example[] { example.Example2, example.Example3 });
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda