using System.Collections.Generic;
public string Label { get; set; }
public string Value { get; set; }
public static void Main()
List<DataItem> yy = null;
var fix = yy?.Any(x => x.Label == "dd") ?? false;
var error = (bool)yy?.Any(x => x.Label == "dd");