Hello how can i remove item from generic list here is my code im trying to do it right but i dont know where i make mistake;/
Users us_end = new Users(); for
As someone said in the previous answers: object equality is compared by reference in .NET. But you can benefit from the difference between classes and structs by simply turning your element T inside List from class to struct.