public class Experience
{
// Equals and GetHashCode methods
// Other props
public List<string> Methods {get;set;}
}
private List<Experience> _experiences = new()
{ Methods = new() { ".NET", ".NET6.0", "C#" } };
private List<string> _tags = new()
{ ".NET", "C#", "Blazor", "Other" };
public class Experience
{
// Equals and GetHashCode methods
// Other props
public List<string> Methods {get;set;}
}
private List<Experience> _experiences = new()
{ Methods = new() { ".NET", ".NET6.0", "C#" } };
private List<string> _tags = new()
{ ".NET", "C#", "Blazor", "Other" };